Skip to content

Commit 3f75420

Browse files
1 parent d57aca9 commit 3f75420

File tree

8 files changed

+108
-93
lines changed

8 files changed

+108
-93
lines changed

clients/google-api-services-drive/v3/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-drive</artifactId>
25-
<version>v3-rev20250829-2.0.0</version>
25+
<version>v3-rev20250910-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-drive:v3-rev20250829-2.0.0'
38+
implementation 'com.google.apis:google-api-services-drive:v3-rev20250910-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-drive/v3/2.0.0/com/google/api/services/drive/Drive.java

Lines changed: 44 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -290,15 +290,16 @@ public Accessproposals accessproposals() {
290290
public class Accessproposals {
291291

292292
/**
293-
* Retrieves an AccessProposal by ID.
293+
* Retrieves an access proposal by ID. For more information, see [Manage pending access
294+
* proposals](https://developers.google.com/workspace/drive/api/guides/pending-access).
294295
*
295296
* Create a request for the method "accessproposals.get".
296297
*
297298
* This request holds the parameters needed by the drive server. After setting any optional
298299
* parameters, call the {@link Get#execute()} method to invoke the remote operation.
299300
*
300-
* @param fileId Required. The id of the item the request is on.
301-
* @param proposalId Required. The id of the access proposal to resolve.
301+
* @param fileId Required. The ID of the item the request is on.
302+
* @param proposalId Required. The ID of the access proposal to resolve.
302303
* @return the request
303304
*/
304305
public Get get(java.lang.String fileId, java.lang.String proposalId) throws java.io.IOException {
@@ -312,7 +313,8 @@ public class Get extends DriveRequest<com.google.api.services.drive.model.Access
312313
private static final String REST_PATH = "files/{fileId}/accessproposals/{proposalId}";
313314

314315
/**
315-
* Retrieves an AccessProposal by ID.
316+
* Retrieves an access proposal by ID. For more information, see [Manage pending access
317+
* proposals](https://developers.google.com/workspace/drive/api/guides/pending-access).
316318
*
317319
* Create a request for the method "accessproposals.get".
318320
*
@@ -321,8 +323,8 @@ public class Get extends DriveRequest<com.google.api.services.drive.model.Access
321323
* Get#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must be
322324
* called to initialize this instance immediately after invoking the constructor. </p>
323325
*
324-
* @param fileId Required. The id of the item the request is on.
325-
* @param proposalId Required. The id of the access proposal to resolve.
326+
* @param fileId Required. The ID of the item the request is on.
327+
* @param proposalId Required. The ID of the access proposal to resolve.
326328
* @since 1.13
327329
*/
328330
protected Get(java.lang.String fileId, java.lang.String proposalId) {
@@ -396,33 +398,33 @@ public Get setUploadProtocol(java.lang.String uploadProtocol) {
396398
return (Get) super.setUploadProtocol(uploadProtocol);
397399
}
398400

399-
/** Required. The id of the item the request is on. */
401+
/** Required. The ID of the item the request is on. */
400402
@com.google.api.client.util.Key
401403
private java.lang.String fileId;
402404

403-
/** Required. The id of the item the request is on.
405+
/** Required. The ID of the item the request is on.
404406
*/
405407
public java.lang.String getFileId() {
406408
return fileId;
407409
}
408410

409-
/** Required. The id of the item the request is on. */
411+
/** Required. The ID of the item the request is on. */
410412
public Get setFileId(java.lang.String fileId) {
411413
this.fileId = fileId;
412414
return this;
413415
}
414416

415-
/** Required. The id of the access proposal to resolve. */
417+
/** Required. The ID of the access proposal to resolve. */
416418
@com.google.api.client.util.Key
417419
private java.lang.String proposalId;
418420

419-
/** Required. The id of the access proposal to resolve.
421+
/** Required. The ID of the access proposal to resolve.
420422
*/
421423
public java.lang.String getProposalId() {
422424
return proposalId;
423425
}
424426

425-
/** Required. The id of the access proposal to resolve. */
427+
/** Required. The ID of the access proposal to resolve. */
426428
public Get setProposalId(java.lang.String proposalId) {
427429
this.proposalId = proposalId;
428430
return this;
@@ -434,15 +436,17 @@ public Get set(String parameterName, Object value) {
434436
}
435437
}
436438
/**
437-
* List the AccessProposals on a file. Note: Only approvers are able to list AccessProposals on a
438-
* file. If the user is not an approver, returns a 403.
439+
* List the access proposals on a file. For more information, see [Manage pending access
440+
* proposals](https://developers.google.com/workspace/drive/api/guides/pending-access). Note: Only
441+
* approvers are able to list access proposals on a file. If the user isn't an approver, a 403 error
442+
* is returned.
439443
*
440444
* Create a request for the method "accessproposals.list".
441445
*
442446
* This request holds the parameters needed by the drive server. After setting any optional
443447
* parameters, call the {@link List#execute()} method to invoke the remote operation.
444448
*
445-
* @param fileId Required. The id of the item the request is on.
449+
* @param fileId Required. The ID of the item the request is on.
446450
* @return the request
447451
*/
448452
public List list(java.lang.String fileId) throws java.io.IOException {
@@ -456,8 +460,10 @@ public class List extends DriveRequest<com.google.api.services.drive.model.ListA
456460
private static final String REST_PATH = "files/{fileId}/accessproposals";
457461

458462
/**
459-
* List the AccessProposals on a file. Note: Only approvers are able to list AccessProposals on a
460-
* file. If the user is not an approver, returns a 403.
463+
* List the access proposals on a file. For more information, see [Manage pending access
464+
* proposals](https://developers.google.com/workspace/drive/api/guides/pending-access). Note: Only
465+
* approvers are able to list access proposals on a file. If the user isn't an approver, a 403
466+
* error is returned.
461467
*
462468
* Create a request for the method "accessproposals.list".
463469
*
@@ -466,7 +472,7 @@ public class List extends DriveRequest<com.google.api.services.drive.model.ListA
466472
* List#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must be
467473
* called to initialize this instance immediately after invoking the constructor. </p>
468474
*
469-
* @param fileId Required. The id of the item the request is on.
475+
* @param fileId Required. The ID of the item the request is on.
470476
* @since 1.13
471477
*/
472478
protected List(java.lang.String fileId) {
@@ -539,33 +545,33 @@ public List setUploadProtocol(java.lang.String uploadProtocol) {
539545
return (List) super.setUploadProtocol(uploadProtocol);
540546
}
541547

542-
/** Required. The id of the item the request is on. */
548+
/** Required. The ID of the item the request is on. */
543549
@com.google.api.client.util.Key
544550
private java.lang.String fileId;
545551

546-
/** Required. The id of the item the request is on.
552+
/** Required. The ID of the item the request is on.
547553
*/
548554
public java.lang.String getFileId() {
549555
return fileId;
550556
}
551557

552-
/** Required. The id of the item the request is on. */
558+
/** Required. The ID of the item the request is on. */
553559
public List setFileId(java.lang.String fileId) {
554560
this.fileId = fileId;
555561
return this;
556562
}
557563

558-
/** Optional. The number of results per page */
564+
/** Optional. The number of results per page. */
559565
@com.google.api.client.util.Key
560566
private java.lang.Integer pageSize;
561567

562-
/** Optional. The number of results per page
568+
/** Optional. The number of results per page.
563569
*/
564570
public java.lang.Integer getPageSize() {
565571
return pageSize;
566572
}
567573

568-
/** Optional. The number of results per page */
574+
/** Optional. The number of results per page. */
569575
public List setPageSize(java.lang.Integer pageSize) {
570576
this.pageSize = pageSize;
571577
return this;
@@ -593,15 +599,16 @@ public List set(String parameterName, Object value) {
593599
}
594600
}
595601
/**
596-
* Used to approve or deny an Access Proposal.
602+
* Approves or denies an access proposal. For more information, see [Manage pending access
603+
* proposals](https://developers.google.com/workspace/drive/api/guides/pending-access).
597604
*
598605
* Create a request for the method "accessproposals.resolve".
599606
*
600607
* This request holds the parameters needed by the drive server. After setting any optional
601608
* parameters, call the {@link Resolve#execute()} method to invoke the remote operation.
602609
*
603-
* @param fileId Required. The id of the item the request is on.
604-
* @param proposalId Required. The id of the access proposal to resolve.
610+
* @param fileId Required. The ID of the item the request is on.
611+
* @param proposalId Required. The ID of the access proposal to resolve.
605612
* @param content the {@link com.google.api.services.drive.model.ResolveAccessProposalRequest}
606613
* @return the request
607614
*/
@@ -616,7 +623,8 @@ public class Resolve extends DriveRequest<Void> {
616623
private static final String REST_PATH = "files/{fileId}/accessproposals/{proposalId}:resolve";
617624

618625
/**
619-
* Used to approve or deny an Access Proposal.
626+
* Approves or denies an access proposal. For more information, see [Manage pending access
627+
* proposals](https://developers.google.com/workspace/drive/api/guides/pending-access).
620628
*
621629
* Create a request for the method "accessproposals.resolve".
622630
*
@@ -626,8 +634,8 @@ public class Resolve extends DriveRequest<Void> {
626634
* Resolve#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
627635
* be called to initialize this instance immediately after invoking the constructor. </p>
628636
*
629-
* @param fileId Required. The id of the item the request is on.
630-
* @param proposalId Required. The id of the access proposal to resolve.
637+
* @param fileId Required. The ID of the item the request is on.
638+
* @param proposalId Required. The ID of the access proposal to resolve.
631639
* @param content the {@link com.google.api.services.drive.model.ResolveAccessProposalRequest}
632640
* @since 1.13
633641
*/
@@ -692,33 +700,33 @@ public Resolve setUploadProtocol(java.lang.String uploadProtocol) {
692700
return (Resolve) super.setUploadProtocol(uploadProtocol);
693701
}
694702

695-
/** Required. The id of the item the request is on. */
703+
/** Required. The ID of the item the request is on. */
696704
@com.google.api.client.util.Key
697705
private java.lang.String fileId;
698706

699-
/** Required. The id of the item the request is on.
707+
/** Required. The ID of the item the request is on.
700708
*/
701709
public java.lang.String getFileId() {
702710
return fileId;
703711
}
704712

705-
/** Required. The id of the item the request is on. */
713+
/** Required. The ID of the item the request is on. */
706714
public Resolve setFileId(java.lang.String fileId) {
707715
this.fileId = fileId;
708716
return this;
709717
}
710718

711-
/** Required. The id of the access proposal to resolve. */
719+
/** Required. The ID of the access proposal to resolve. */
712720
@com.google.api.client.util.Key
713721
private java.lang.String proposalId;
714722

715-
/** Required. The id of the access proposal to resolve.
723+
/** Required. The ID of the access proposal to resolve.
716724
*/
717725
public java.lang.String getProposalId() {
718726
return proposalId;
719727
}
720728

721-
/** Required. The id of the access proposal to resolve. */
729+
/** Required. The ID of the access proposal to resolve. */
722730
public Resolve setProposalId(java.lang.String proposalId) {
723731
this.proposalId = proposalId;
724732
return this;

0 commit comments

Comments
 (0)