| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent b1628dd commit 06572b7
56 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -46,33 +46,33 @@ If you are using Maven without the BOM, add this to your dependencies: | |||
| 46 | 46 | <dependency> | |
| 47 | 47 | <groupId>com.google.cloud</groupId> | |
| 48 | 48 | <artifactId>google-cloud-storage</artifactId> | |
| 49 | - <version>2.52.1</version> | ||
| 49 | + <version>2.52.2</version> | ||
| 50 | 50 | </dependency> | |
| 51 | 51 | <dependency> | |
| 52 | 52 | <groupId>com.google.cloud</groupId> | |
| 53 | 53 | <artifactId>google-cloud-storage-control</artifactId> | |
| 54 | - <version>2.52.1</version> | ||
| 54 | + <version>2.52.2</version> | ||
| 55 | 55 | </dependency> | |
| 56 | 56 | ||
| 57 | 57 | ``` | |
| 58 | 58 | ||
| 59 | 59 | If you are using Gradle 5.x or later, add this to your dependencies: | |
| 60 | 60 | ||
| 61 | 61 | ```Groovy | |
| 62 | - implementation platform('com.google.cloud:libraries-bom:26.59.0') | ||
| 62 | + implementation platform('com.google.cloud:libraries-bom:26.60.0') | ||
| 63 | 63 | ||
| 64 | 64 | implementation 'com.google.cloud:google-cloud-storage' | |
| 65 | 65 | ``` | |
| 66 | 66 | If you are using Gradle without BOM, add this to your dependencies: | |
| 67 | 67 | ||
| 68 | 68 | ```Groovy | |
| 69 | - implementation 'com.google.cloud:google-cloud-storage:2.52.2' | ||
| 69 | + implementation 'com.google.cloud:google-cloud-storage:2.52.3' | ||
| 70 | 70 | ``` | |
| 71 | 71 | ||
| 72 | 72 | If you are using SBT, add this to your dependencies: | |
| 73 | 73 | ||
| 74 | 74 | ```Scala | |
| 75 | - libraryDependencies += "com.google.cloud" % "google-cloud-storage" % "2.52.2" | ||
| 75 | + libraryDependencies += "com.google.cloud" % "google-cloud-storage" % "2.52.3" | ||
| 76 | 76 | ``` | |
| 77 | 77 | ||
| 78 | 78 | ## Authentication | |
@@ -515,7 +515,7 @@ Java is a registered trademark of Oracle and/or its affiliates. | |||
| 515 | 515 | [kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-storage/java11.html | |
| 516 | 516 | [stability-image]: https://img.shields.io/badge/stability-stable-green | |
| 517 | 517 | [maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-storage.svg | |
| 518 | - [maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-storage/2.52.2 | ||
| 518 | + [maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-storage/2.52.3 | ||
| 519 | 519 | [authentication]: https://github.com/googleapis/google-cloud-java#authentication | |
| 520 | 520 | [auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes | |
| 521 | 521 | [predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | - gapic_generator_version: 2.56.2 | ||
| 2 | - googleapis_commitish: ce291b3bc967923f89e0e54ed33d18802672b171 | ||
| 3 | - libraries_bom_version: 26.59.0 | ||
| 1 | + gapic_generator_version: 2.58.0 | ||
| 2 | + googleapis_commitish: 7d43527b927f65a80de9f0071d0a2e1c172de849 | ||
| 3 | + libraries_bom_version: 26.60.0 | ||
| 4 | 4 | libraries: | |
| 5 | 5 | - api_shortname: storage | |
| 6 | 6 | name_pretty: Cloud Storage | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,6 +16,7 @@ | |||
| 16 | 16 | ||
| 17 | 17 | package com.google.storage.control.v2; | |
| 18 | 18 | ||
| 19 | + import static com.google.storage.control.v2.StorageControlClient.ListAnywhereCachesPagedResponse; | ||
| 19 | 20 | import static com.google.storage.control.v2.StorageControlClient.ListFoldersPagedResponse; | |
| 20 | 21 | import static com.google.storage.control.v2.StorageControlClient.ListManagedFoldersPagedResponse; | |
| 21 | 22 | ||
@@ -176,6 +177,101 @@ public UnaryCallSettings<GetManagedFolderRequest, ManagedFolder> getManagedFolde | |||
| 176 | 177 | return ((StorageControlStubSettings) getStubSettings()).listManagedFoldersSettings(); | |
| 177 | 178 | } | |
| 178 | 179 | ||
| 180 | + /** Returns the object with the settings used for calls to createAnywhereCache. */ | ||
| 181 | + public UnaryCallSettings<CreateAnywhereCacheRequest, Operation> createAnywhereCacheSettings() { | ||
| 182 | + return ((StorageControlStubSettings) getStubSettings()).createAnywhereCacheSettings(); | ||
| 183 | + } | ||
| 184 | + | ||
| 185 | + /** Returns the object with the settings used for calls to createAnywhereCache. */ | ||
| 186 | + public OperationCallSettings< | ||
| 187 | + CreateAnywhereCacheRequest, AnywhereCache, CreateAnywhereCacheMetadata> | ||
| 188 | + createAnywhereCacheOperationSettings() { | ||
| 189 | + return ((StorageControlStubSettings) getStubSettings()).createAnywhereCacheOperationSettings(); | ||
| 190 | + } | ||
| 191 | + | ||
| 192 | + /** Returns the object with the settings used for calls to updateAnywhereCache. */ | ||
| 193 | + public UnaryCallSettings<UpdateAnywhereCacheRequest, Operation> updateAnywhereCacheSettings() { | ||
| 194 | + return ((StorageControlStubSettings) getStubSettings()).updateAnywhereCacheSettings(); | ||
| 195 | + } | ||
| 196 | + | ||
| 197 | + /** Returns the object with the settings used for calls to updateAnywhereCache. */ | ||
| 198 | + public OperationCallSettings< | ||
| 199 | + UpdateAnywhereCacheRequest, AnywhereCache, UpdateAnywhereCacheMetadata> | ||
| 200 | + updateAnywhereCacheOperationSettings() { | ||
| 201 | + return ((StorageControlStubSettings) getStubSettings()).updateAnywhereCacheOperationSettings(); | ||
| 202 | + } | ||
| 203 | + | ||
| 204 | + /** Returns the object with the settings used for calls to disableAnywhereCache. */ | ||
| 205 | + public UnaryCallSettings<DisableAnywhereCacheRequest, AnywhereCache> | ||
| 206 | + disableAnywhereCacheSettings() { | ||
| 207 | + return ((StorageControlStubSettings) getStubSettings()).disableAnywhereCacheSettings(); | ||
| 208 | + } | ||
| 209 | + | ||
| 210 | + /** Returns the object with the settings used for calls to pauseAnywhereCache. */ | ||
| 211 | + public UnaryCallSettings<PauseAnywhereCacheRequest, AnywhereCache> pauseAnywhereCacheSettings() { | ||
| 212 | + return ((StorageControlStubSettings) getStubSettings()).pauseAnywhereCacheSettings(); | ||
| 213 | + } | ||
| 214 | + | ||
| 215 | + /** Returns the object with the settings used for calls to resumeAnywhereCache. */ | ||
| 216 | + public UnaryCallSettings<ResumeAnywhereCacheRequest, AnywhereCache> | ||
| 217 | + resumeAnywhereCacheSettings() { | ||
| 218 | + return ((StorageControlStubSettings) getStubSettings()).resumeAnywhereCacheSettings(); | ||
| 219 | + } | ||
| 220 | + | ||
| 221 | + /** Returns the object with the settings used for calls to getAnywhereCache. */ | ||
| 222 | + public UnaryCallSettings<GetAnywhereCacheRequest, AnywhereCache> getAnywhereCacheSettings() { | ||
| 223 | + return ((StorageControlStubSettings) getStubSettings()).getAnywhereCacheSettings(); | ||
| 224 | + } | ||
| 225 | + | ||
| 226 | + /** Returns the object with the settings used for calls to listAnywhereCaches. */ | ||
| 227 | + public PagedCallSettings< | ||
| 228 | + ListAnywhereCachesRequest, ListAnywhereCachesResponse, ListAnywhereCachesPagedResponse> | ||
| 229 | + listAnywhereCachesSettings() { | ||
| 230 | + return ((StorageControlStubSettings) getStubSettings()).listAnywhereCachesSettings(); | ||
| 231 | + } | ||
| 232 | + | ||
| 233 | + /** Returns the object with the settings used for calls to getProjectIntelligenceConfig. */ | ||
| 234 | + public UnaryCallSettings<GetProjectIntelligenceConfigRequest, IntelligenceConfig> | ||
| 235 | + getProjectIntelligenceConfigSettings() { | ||
| 236 | + return ((StorageControlStubSettings) getStubSettings()).getProjectIntelligenceConfigSettings(); | ||
| 237 | + } | ||
| 238 | + | ||
| 239 | + /** Returns the object with the settings used for calls to updateProjectIntelligenceConfig. */ | ||
| 240 | + public UnaryCallSettings<UpdateProjectIntelligenceConfigRequest, IntelligenceConfig> | ||
| 241 | + updateProjectIntelligenceConfigSettings() { | ||
| 242 | + return ((StorageControlStubSettings) getStubSettings()) | ||
| 243 | + .updateProjectIntelligenceConfigSettings(); | ||
| 244 | + } | ||
| 245 | + | ||
| 246 | + /** Returns the object with the settings used for calls to getFolderIntelligenceConfig. */ | ||
| 247 | + public UnaryCallSettings<GetFolderIntelligenceConfigRequest, IntelligenceConfig> | ||
| 248 | + getFolderIntelligenceConfigSettings() { | ||
| 249 | + return ((StorageControlStubSettings) getStubSettings()).getFolderIntelligenceConfigSettings(); | ||
| 250 | + } | ||
| 251 | + | ||
| 252 | + /** Returns the object with the settings used for calls to updateFolderIntelligenceConfig. */ | ||
| 253 | + public UnaryCallSettings<UpdateFolderIntelligenceConfigRequest, IntelligenceConfig> | ||
| 254 | + updateFolderIntelligenceConfigSettings() { | ||
| 255 | + return ((StorageControlStubSettings) getStubSettings()) | ||
| 256 | + .updateFolderIntelligenceConfigSettings(); | ||
| 257 | + } | ||
| 258 | + | ||
| 259 | + /** Returns the object with the settings used for calls to getOrganizationIntelligenceConfig. */ | ||
| 260 | + public UnaryCallSettings<GetOrganizationIntelligenceConfigRequest, IntelligenceConfig> | ||
| 261 | + getOrganizationIntelligenceConfigSettings() { | ||
| 262 | + return ((StorageControlStubSettings) getStubSettings()) | ||
| 263 | + .getOrganizationIntelligenceConfigSettings(); | ||
| 264 | + } | ||
| 265 | + | ||
| 266 | + /** | ||
| 267 | + * Returns the object with the settings used for calls to updateOrganizationIntelligenceConfig. | ||
| 268 | + */ | ||
| 269 | + public UnaryCallSettings<UpdateOrganizationIntelligenceConfigRequest, IntelligenceConfig> | ||
| 270 | + updateOrganizationIntelligenceConfigSettings() { | ||
| 271 | + return ((StorageControlStubSettings) getStubSettings()) | ||
| 272 | + .updateOrganizationIntelligenceConfigSettings(); | ||
| 273 | + } | ||
| 274 | + | ||
| 179 | 275 | public static final StorageControlSettings create(StorageControlStubSettings stub) | |
| 180 | 276 | throws IOException { | |
| 181 | 277 | return new StorageControlSettings.Builder(stub.toBuilder()).build(); | |
@@ -336,6 +432,102 @@ public UnaryCallSettings.Builder<RenameFolderRequest, Operation> renameFolderSet | |||
| 336 | 432 | return getStubSettingsBuilder().listManagedFoldersSettings(); | |
| 337 | 433 | } | |
| 338 | 434 | ||
| 435 | + /** Returns the builder for the settings used for calls to createAnywhereCache. */ | ||
| 436 | + public UnaryCallSettings.Builder<CreateAnywhereCacheRequest, Operation> | ||
| 437 | + createAnywhereCacheSettings() { | ||
| 438 | + return getStubSettingsBuilder().createAnywhereCacheSettings(); | ||
| 439 | + } | ||
| 440 | + | ||
| 441 | + /** Returns the builder for the settings used for calls to createAnywhereCache. */ | ||
| 442 | + public OperationCallSettings.Builder< | ||
| 443 | + CreateAnywhereCacheRequest, AnywhereCache, CreateAnywhereCacheMetadata> | ||
| 444 | + createAnywhereCacheOperationSettings() { | ||
| 445 | + return getStubSettingsBuilder().createAnywhereCacheOperationSettings(); | ||
| 446 | + } | ||
| 447 | + | ||
| 448 | + /** Returns the builder for the settings used for calls to updateAnywhereCache. */ | ||
| 449 | + public UnaryCallSettings.Builder<UpdateAnywhereCacheRequest, Operation> | ||
| 450 | + updateAnywhereCacheSettings() { | ||
| 451 | + return getStubSettingsBuilder().updateAnywhereCacheSettings(); | ||
| 452 | + } | ||
| 453 | + | ||
| 454 | + /** Returns the builder for the settings used for calls to updateAnywhereCache. */ | ||
| 455 | + public OperationCallSettings.Builder< | ||
| 456 | + UpdateAnywhereCacheRequest, AnywhereCache, UpdateAnywhereCacheMetadata> | ||
| 457 | + updateAnywhereCacheOperationSettings() { | ||
| 458 | + return getStubSettingsBuilder().updateAnywhereCacheOperationSettings(); | ||
| 459 | + } | ||
| 460 | + | ||
| 461 | + /** Returns the builder for the settings used for calls to disableAnywhereCache. */ | ||
| 462 | + public UnaryCallSettings.Builder<DisableAnywhereCacheRequest, AnywhereCache> | ||
| 463 | + disableAnywhereCacheSettings() { | ||
| 464 | + return getStubSettingsBuilder().disableAnywhereCacheSettings(); | ||
| 465 | + } | ||
| 466 | + | ||
| 467 | + /** Returns the builder for the settings used for calls to pauseAnywhereCache. */ | ||
| 468 | + public UnaryCallSettings.Builder<PauseAnywhereCacheRequest, AnywhereCache> | ||
| 469 | + pauseAnywhereCacheSettings() { | ||
| 470 | + return getStubSettingsBuilder().pauseAnywhereCacheSettings(); | ||
| 471 | + } | ||
| 472 | + | ||
| 473 | + /** Returns the builder for the settings used for calls to resumeAnywhereCache. */ | ||
| 474 | + public UnaryCallSettings.Builder<ResumeAnywhereCacheRequest, AnywhereCache> | ||
| 475 | + resumeAnywhereCacheSettings() { | ||
| 476 | + return getStubSettingsBuilder().resumeAnywhereCacheSettings(); | ||
| 477 | + } | ||
| 478 | + | ||
| 479 | + /** Returns the builder for the settings used for calls to getAnywhereCache. */ | ||
| 480 | + public UnaryCallSettings.Builder<GetAnywhereCacheRequest, AnywhereCache> | ||
| 481 | + getAnywhereCacheSettings() { | ||
| 482 | + return getStubSettingsBuilder().getAnywhereCacheSettings(); | ||
| 483 | + } | ||
| 484 | + | ||
| 485 | + /** Returns the builder for the settings used for calls to listAnywhereCaches. */ | ||
| 486 | + public PagedCallSettings.Builder< | ||
| 487 | + ListAnywhereCachesRequest, ListAnywhereCachesResponse, ListAnywhereCachesPagedResponse> | ||
| 488 | + listAnywhereCachesSettings() { | ||
| 489 | + return getStubSettingsBuilder().listAnywhereCachesSettings(); | ||
| 490 | + } | ||
| 491 | + | ||
| 492 | + /** Returns the builder for the settings used for calls to getProjectIntelligenceConfig. */ | ||
| 493 | + public UnaryCallSettings.Builder<GetProjectIntelligenceConfigRequest, IntelligenceConfig> | ||
| 494 | + getProjectIntelligenceConfigSettings() { | ||
| 495 | + return getStubSettingsBuilder().getProjectIntelligenceConfigSettings(); | ||
| 496 | + } | ||
| 497 | + | ||
| 498 | + /** Returns the builder for the settings used for calls to updateProjectIntelligenceConfig. */ | ||
| 499 | + public UnaryCallSettings.Builder<UpdateProjectIntelligenceConfigRequest, IntelligenceConfig> | ||
| 500 | + updateProjectIntelligenceConfigSettings() { | ||
| 501 | + return getStubSettingsBuilder().updateProjectIntelligenceConfigSettings(); | ||
| 502 | + } | ||
| 503 | + | ||
| 504 | + /** Returns the builder for the settings used for calls to getFolderIntelligenceConfig. */ | ||
| 505 | + public UnaryCallSettings.Builder<GetFolderIntelligenceConfigRequest, IntelligenceConfig> | ||
| 506 | + getFolderIntelligenceConfigSettings() { | ||
| 507 | + return getStubSettingsBuilder().getFolderIntelligenceConfigSettings(); | ||
| 508 | + } | ||
| 509 | + | ||
| 510 | + /** Returns the builder for the settings used for calls to updateFolderIntelligenceConfig. */ | ||
| 511 | + public UnaryCallSettings.Builder<UpdateFolderIntelligenceConfigRequest, IntelligenceConfig> | ||
| 512 | + updateFolderIntelligenceConfigSettings() { | ||
| 513 | + return getStubSettingsBuilder().updateFolderIntelligenceConfigSettings(); | ||
| 514 | + } | ||
| 515 | + | ||
| 516 | + /** Returns the builder for the settings used for calls to getOrganizationIntelligenceConfig. */ | ||
| 517 | + public UnaryCallSettings.Builder<GetOrganizationIntelligenceConfigRequest, IntelligenceConfig> | ||
| 518 | + getOrganizationIntelligenceConfigSettings() { | ||
| 519 | + return getStubSettingsBuilder().getOrganizationIntelligenceConfigSettings(); | ||
| 520 | + } | ||
| 521 | + | ||
| 522 | + /** | ||
| 523 | + * Returns the builder for the settings used for calls to updateOrganizationIntelligenceConfig. | ||
| 524 | + */ | ||
| 525 | + public UnaryCallSettings.Builder< | ||
| 526 | + UpdateOrganizationIntelligenceConfigRequest, IntelligenceConfig> | ||
| 527 | + updateOrganizationIntelligenceConfigSettings() { | ||
| 528 | + return getStubSettingsBuilder().updateOrganizationIntelligenceConfigSettings(); | ||
| 529 | + } | ||
| 530 | + | ||
| 339 | 531 | @Override | |
| 340 | 532 | public StorageControlSettings build() throws IOException { | |
| 341 | 533 | return new StorageControlSettings(this); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -10,6 +10,9 @@ | |||
| 10 | 10 | "grpc": { | |
| 11 | 11 | "libraryClient": "StorageControlClient", | |
| 12 | 12 | "rpcs": { | |
| 13 | + "CreateAnywhereCache": { | ||
| 14 | + "methods": ["createAnywhereCacheAsync", "createAnywhereCacheAsync", "createAnywhereCacheAsync", "createAnywhereCacheOperationCallable", "createAnywhereCacheCallable"] | ||
| 15 | + }, | ||
| 13 | 16 | "CreateFolder": { | |
| 14 | 17 | "methods": ["createFolder", "createFolder", "createFolder", "createFolderCallable"] | |
| 15 | 18 | }, | |
@@ -22,23 +25,59 @@ | |||
| 22 | 25 | "DeleteManagedFolder": { | |
| 23 | 26 | "methods": ["deleteManagedFolder", "deleteManagedFolder", "deleteManagedFolder", "deleteManagedFolderCallable"] | |
| 24 | 27 | }, | |
| 28 | + "DisableAnywhereCache": { | ||
| 29 | + "methods": ["disableAnywhereCache", "disableAnywhereCache", "disableAnywhereCache", "disableAnywhereCacheCallable"] | ||
| 30 | + }, | ||
| 31 | + "GetAnywhereCache": { | ||
| 32 | + "methods": ["getAnywhereCache", "getAnywhereCache", "getAnywhereCache", "getAnywhereCacheCallable"] | ||
| 33 | + }, | ||
| 25 | 34 | "GetFolder": { | |
| 26 | 35 | "methods": ["getFolder", "getFolder", "getFolder", "getFolderCallable"] | |
| 27 | 36 | }, | |
| 37 | + "GetFolderIntelligenceConfig": { | ||
| 38 | + "methods": ["getFolderIntelligenceConfig", "getFolderIntelligenceConfig", "getFolderIntelligenceConfig", "getFolderIntelligenceConfigCallable"] | ||
| 39 | + }, | ||
| 28 | 40 | "GetManagedFolder": { | |
| 29 | 41 | "methods": ["getManagedFolder", "getManagedFolder", "getManagedFolder", "getManagedFolderCallable"] | |
| 30 | 42 | }, | |
| 43 | + "GetOrganizationIntelligenceConfig": { | ||
| 44 | + "methods": ["getOrganizationIntelligenceConfig", "getOrganizationIntelligenceConfig", "getOrganizationIntelligenceConfig", "getOrganizationIntelligenceConfigCallable"] | ||
| 45 | + }, | ||
| 46 | + "GetProjectIntelligenceConfig": { | ||
| 47 | + "methods": ["getProjectIntelligenceConfig", "getProjectIntelligenceConfig", "getProjectIntelligenceConfig", "getProjectIntelligenceConfigCallable"] | ||
| 48 | + }, | ||
| 31 | 49 | "GetStorageLayout": { | |
| 32 | 50 | "methods": ["getStorageLayout", "getStorageLayout", "getStorageLayout", "getStorageLayoutCallable"] | |
| 33 | 51 | }, | |
| 52 | + "ListAnywhereCaches": { | ||
| 53 | + "methods": ["listAnywhereCaches", "listAnywhereCaches", "listAnywhereCaches", "listAnywhereCachesPagedCallable", "listAnywhereCachesCallable"] | ||
| 54 | + }, | ||
| 34 | 55 | "ListFolders": { | |
| 35 | 56 | "methods": ["listFolders", "listFolders", "listFolders", "listFoldersPagedCallable", "listFoldersCallable"] | |
| 36 | 57 | }, | |
| 37 | 58 | "ListManagedFolders": { | |
| 38 | 59 | "methods": ["listManagedFolders", "listManagedFolders", "listManagedFolders", "listManagedFoldersPagedCallable", "listManagedFoldersCallable"] | |
| 39 | 60 | }, | |
| 61 | + "PauseAnywhereCache": { | ||
| 62 | + "methods": ["pauseAnywhereCache", "pauseAnywhereCache", "pauseAnywhereCache", "pauseAnywhereCacheCallable"] | ||
| 63 | + }, | ||
| 40 | 64 | "RenameFolder": { | |
| 41 | 65 | "methods": ["renameFolderAsync", "renameFolderAsync", "renameFolderAsync", "renameFolderOperationCallable", "renameFolderCallable"] | |
| 66 | + }, | ||
| 67 | + "ResumeAnywhereCache": { | ||
| 68 | + "methods": ["resumeAnywhereCache", "resumeAnywhereCache", "resumeAnywhereCache", "resumeAnywhereCacheCallable"] | ||
| 69 | + }, | ||
| 70 | + "UpdateAnywhereCache": { | ||
| 71 | + "methods": ["updateAnywhereCacheAsync", "updateAnywhereCacheAsync", "updateAnywhereCacheOperationCallable", "updateAnywhereCacheCallable"] | ||
| 72 | + }, | ||
| 73 | + "UpdateFolderIntelligenceConfig": { | ||
| 74 | + "methods": ["updateFolderIntelligenceConfig", "updateFolderIntelligenceConfig", "updateFolderIntelligenceConfigCallable"] | ||
| 75 | + }, | ||
| 76 | + "UpdateOrganizationIntelligenceConfig": { | ||
| 77 | + "methods": ["updateOrganizationIntelligenceConfig", "updateOrganizationIntelligenceConfig", "updateOrganizationIntelligenceConfigCallable"] | ||
| 78 | + }, | ||
| 79 | + "UpdateProjectIntelligenceConfig": { | ||
| 80 | + "methods": ["updateProjectIntelligenceConfig", "updateProjectIntelligenceConfig", "updateProjectIntelligenceConfigCallable"] | ||
| 42 | 81 | } | |
| 43 | 82 | } | |
| 44 | 83 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments