|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2017 Google Inc. |
| 2 | + * Copyright 2017 Google Inc. |
3 | 3 | *
|
4 |
| - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
5 |
| - * in compliance with the License. You may obtain a copy of the License at |
| 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 |
6 | 7 | *
|
7 | 8 | * http://www.apache.org/licenses/LICENSE-2.0
|
8 | 9 | *
|
9 |
| - * Unless required by applicable law or agreed to in writing, software distributed under the License |
10 |
| - * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
11 |
| - * or implied. See the License for the specific language governing permissions and limitations under |
12 |
| - * the License. |
| 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. |
13 | 15 | */
|
14 | 16 |
|
15 | 17 | package com.example;
|
|
20 | 22 | import com.google.api.client.json.JsonFactory;
|
21 | 23 | import com.google.api.client.json.jackson2.JacksonFactory;
|
22 | 24 | import com.google.api.services.cloudkms.v1.CloudKMS;
|
23 |
| -import com.google.api.services.cloudkms.v1.CloudKMS.Projects.Locations.KeyRings.CryptoKeys.UpdatePrimaryVersion; |
24 | 25 | import com.google.api.services.cloudkms.v1.CloudKMSScopes;
|
25 | 26 | import com.google.api.services.cloudkms.v1.model.Binding;
|
26 | 27 | import com.google.api.services.cloudkms.v1.model.CryptoKey;
|
27 | 28 | import com.google.api.services.cloudkms.v1.model.CryptoKeyVersion;
|
28 | 29 | import com.google.api.services.cloudkms.v1.model.DestroyCryptoKeyVersionRequest;
|
29 |
| -import com.google.api.services.cloudkms.v1.model.RestoreCryptoKeyVersionRequest; |
30 | 30 | import com.google.api.services.cloudkms.v1.model.KeyRing;
|
31 | 31 | import com.google.api.services.cloudkms.v1.model.ListCryptoKeyVersionsResponse;
|
32 | 32 | import com.google.api.services.cloudkms.v1.model.ListCryptoKeysResponse;
|
33 | 33 | import com.google.api.services.cloudkms.v1.model.ListKeyRingsResponse;
|
34 | 34 | import com.google.api.services.cloudkms.v1.model.Policy;
|
| 35 | +import com.google.api.services.cloudkms.v1.model.RestoreCryptoKeyVersionRequest; |
35 | 36 | import com.google.api.services.cloudkms.v1.model.SetIamPolicyRequest;
|
36 | 37 | import com.google.api.services.cloudkms.v1.model.UpdateCryptoKeyPrimaryVersionRequest;
|
37 | 38 | import java.io.IOException;
|
@@ -179,8 +180,7 @@ public static CryptoKeyVersion disableCryptoKeyVersion(
|
179 | 180 | }
|
180 | 181 | // [END kms_disable_cryptokey_version]
|
181 | 182 |
|
182 |
| - // [START kms_enable_cryptokey_version] |
183 |
| - |
| 183 | + // [START kms_enable_cryptokey_version] |
184 | 184 | /**
|
185 | 185 | * Enables the given version of the crypto key.
|
186 | 186 | */
|
@@ -563,7 +563,7 @@ public static void listCryptoKeys(String projectId, String locationId, String ke
|
563 | 563 | for (CryptoKey key : cryptoKeys.getCryptoKeys()) {
|
564 | 564 | System.out.println(key);
|
565 | 565 | }
|
566 |
| - } while(cryptoKeys.getNextPageToken() != null); |
| 566 | + } while (cryptoKeys.getNextPageToken() != null); |
567 | 567 | }
|
568 | 568 |
|
569 | 569 | /**
|
|
0 commit comments