google-apis-iam_v2beta 0.16.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: aff249d62c712a776ebe2b391386206cbfb3fc6aa8310f2839654c88fef0b4e9
         | 
| 4 | 
            +
              data.tar.gz: 6b21913e0e109986211434358802cb8123f50b38d9651d2066192c721eee2af0
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: b8f557a0663987750ab96ff3d32678d3a6948df42acfea5688237a526970f79032a27bd119a0250cb89eae413625907efc41f47ca80a0e7230b567214b60b8f9
         | 
| 7 | 
            +
              data.tar.gz: 57b28db1ab1a32cb11cc117af16348dfa30c2775acda4e826ab731d6063507f2a15a73327da917b867f4df2b34c0a9d5d1a9ad0e2e304503247e2060508f2c7b
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,14 @@ | |
| 1 1 | 
             
            # Release history for google-apis-iam_v2beta
         | 
| 2 2 |  | 
| 3 | 
            +
            ### v0.18.0 (2024-12-02)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            * Regenerated from discovery document revision 20241114
         | 
| 6 | 
            +
            * Regenerated using generator version 0.15.1
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            ### v0.17.0 (2024-06-09)
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            * Regenerated from discovery document revision 20240530
         | 
| 11 | 
            +
             | 
| 3 12 | 
             
            ### v0.16.0 (2024-05-19)
         | 
| 4 13 |  | 
| 5 14 | 
             
            * Regenerated using generator version 0.15.0
         | 
| @@ -58,9 +58,9 @@ module Google | |
| 58 58 | 
             
                    attr_accessor :api_version
         | 
| 59 59 |  | 
| 60 60 | 
             
                    # Output only. Identifies whether the user has requested cancellation of the
         | 
| 61 | 
            -
                    # operation. Operations that have been cancelled successfully have  | 
| 62 | 
            -
                    # error value with a google.rpc.Status.code of 1 | 
| 63 | 
            -
                    # CANCELLED`.
         | 
| 61 | 
            +
                    # operation. Operations that have been cancelled successfully have google.
         | 
| 62 | 
            +
                    # longrunning.Operation.error value with a google.rpc.Status.code of `1`,
         | 
| 63 | 
            +
                    # corresponding to `Code.CANCELLED`.
         | 
| 64 64 | 
             
                    # Corresponds to the JSON property `cancelRequested`
         | 
| 65 65 | 
             
                    # @return [Boolean]
         | 
| 66 66 | 
             
                    attr_accessor :cancel_requested
         | 
| @@ -537,6 +537,242 @@ module Google | |
| 537 537 | 
             
                    end
         | 
| 538 538 | 
             
                  end
         | 
| 539 539 |  | 
| 540 | 
            +
                  # Represents the metadata of the long-running operation.
         | 
| 541 | 
            +
                  class GoogleIamV3OperationMetadata
         | 
| 542 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 543 | 
            +
                  
         | 
| 544 | 
            +
                    # Output only. API version used to start the operation.
         | 
| 545 | 
            +
                    # Corresponds to the JSON property `apiVersion`
         | 
| 546 | 
            +
                    # @return [String]
         | 
| 547 | 
            +
                    attr_accessor :api_version
         | 
| 548 | 
            +
                  
         | 
| 549 | 
            +
                    # Output only. The time the operation was created.
         | 
| 550 | 
            +
                    # Corresponds to the JSON property `createTime`
         | 
| 551 | 
            +
                    # @return [String]
         | 
| 552 | 
            +
                    attr_accessor :create_time
         | 
| 553 | 
            +
                  
         | 
| 554 | 
            +
                    # Output only. The time the operation finished running.
         | 
| 555 | 
            +
                    # Corresponds to the JSON property `endTime`
         | 
| 556 | 
            +
                    # @return [String]
         | 
| 557 | 
            +
                    attr_accessor :end_time
         | 
| 558 | 
            +
                  
         | 
| 559 | 
            +
                    # Output only. Identifies whether the user has requested cancellation of the
         | 
| 560 | 
            +
                    # operation. Operations that have successfully been cancelled have Operation.
         | 
| 561 | 
            +
                    # error value with a google.rpc.Status.code of 1, corresponding to `Code.
         | 
| 562 | 
            +
                    # CANCELLED`.
         | 
| 563 | 
            +
                    # Corresponds to the JSON property `requestedCancellation`
         | 
| 564 | 
            +
                    # @return [Boolean]
         | 
| 565 | 
            +
                    attr_accessor :requested_cancellation
         | 
| 566 | 
            +
                    alias_method :requested_cancellation?, :requested_cancellation
         | 
| 567 | 
            +
                  
         | 
| 568 | 
            +
                    # Output only. Human-readable status of the operation, if any.
         | 
| 569 | 
            +
                    # Corresponds to the JSON property `statusMessage`
         | 
| 570 | 
            +
                    # @return [String]
         | 
| 571 | 
            +
                    attr_accessor :status_message
         | 
| 572 | 
            +
                  
         | 
| 573 | 
            +
                    # Output only. Server-defined resource path for the target of the
         | 
| 574 | 
            +
                    # Corresponds to the JSON property `target`
         | 
| 575 | 
            +
                    # @return [String]
         | 
| 576 | 
            +
                    attr_accessor :target
         | 
| 577 | 
            +
                  
         | 
| 578 | 
            +
                    # Output only. Name of the verb executed by the operation.
         | 
| 579 | 
            +
                    # Corresponds to the JSON property `verb`
         | 
| 580 | 
            +
                    # @return [String]
         | 
| 581 | 
            +
                    attr_accessor :verb
         | 
| 582 | 
            +
                  
         | 
| 583 | 
            +
                    def initialize(**args)
         | 
| 584 | 
            +
                       update!(**args)
         | 
| 585 | 
            +
                    end
         | 
| 586 | 
            +
                  
         | 
| 587 | 
            +
                    # Update properties of this object
         | 
| 588 | 
            +
                    def update!(**args)
         | 
| 589 | 
            +
                      @api_version = args[:api_version] if args.key?(:api_version)
         | 
| 590 | 
            +
                      @create_time = args[:create_time] if args.key?(:create_time)
         | 
| 591 | 
            +
                      @end_time = args[:end_time] if args.key?(:end_time)
         | 
| 592 | 
            +
                      @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
         | 
| 593 | 
            +
                      @status_message = args[:status_message] if args.key?(:status_message)
         | 
| 594 | 
            +
                      @target = args[:target] if args.key?(:target)
         | 
| 595 | 
            +
                      @verb = args[:verb] if args.key?(:verb)
         | 
| 596 | 
            +
                    end
         | 
| 597 | 
            +
                  end
         | 
| 598 | 
            +
                  
         | 
| 599 | 
            +
                  # Represents the metadata of the long-running operation.
         | 
| 600 | 
            +
                  class GoogleIamV3alphaOperationMetadata
         | 
| 601 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 602 | 
            +
                  
         | 
| 603 | 
            +
                    # Output only. API version used to start the operation.
         | 
| 604 | 
            +
                    # Corresponds to the JSON property `apiVersion`
         | 
| 605 | 
            +
                    # @return [String]
         | 
| 606 | 
            +
                    attr_accessor :api_version
         | 
| 607 | 
            +
                  
         | 
| 608 | 
            +
                    # Output only. The time the operation was created.
         | 
| 609 | 
            +
                    # Corresponds to the JSON property `createTime`
         | 
| 610 | 
            +
                    # @return [String]
         | 
| 611 | 
            +
                    attr_accessor :create_time
         | 
| 612 | 
            +
                  
         | 
| 613 | 
            +
                    # Output only. The time the operation finished running.
         | 
| 614 | 
            +
                    # Corresponds to the JSON property `endTime`
         | 
| 615 | 
            +
                    # @return [String]
         | 
| 616 | 
            +
                    attr_accessor :end_time
         | 
| 617 | 
            +
                  
         | 
| 618 | 
            +
                    # Output only. Identifies whether the user has requested cancellation of the
         | 
| 619 | 
            +
                    # operation. Operations that have successfully been cancelled have Operation.
         | 
| 620 | 
            +
                    # error value with a google.rpc.Status.code of 1, corresponding to `Code.
         | 
| 621 | 
            +
                    # CANCELLED`.
         | 
| 622 | 
            +
                    # Corresponds to the JSON property `requestedCancellation`
         | 
| 623 | 
            +
                    # @return [Boolean]
         | 
| 624 | 
            +
                    attr_accessor :requested_cancellation
         | 
| 625 | 
            +
                    alias_method :requested_cancellation?, :requested_cancellation
         | 
| 626 | 
            +
                  
         | 
| 627 | 
            +
                    # Output only. Human-readable status of the operation, if any.
         | 
| 628 | 
            +
                    # Corresponds to the JSON property `statusMessage`
         | 
| 629 | 
            +
                    # @return [String]
         | 
| 630 | 
            +
                    attr_accessor :status_message
         | 
| 631 | 
            +
                  
         | 
| 632 | 
            +
                    # Output only. Server-defined resource path for the target of the
         | 
| 633 | 
            +
                    # Corresponds to the JSON property `target`
         | 
| 634 | 
            +
                    # @return [String]
         | 
| 635 | 
            +
                    attr_accessor :target
         | 
| 636 | 
            +
                  
         | 
| 637 | 
            +
                    # Output only. Name of the verb executed by the operation.
         | 
| 638 | 
            +
                    # Corresponds to the JSON property `verb`
         | 
| 639 | 
            +
                    # @return [String]
         | 
| 640 | 
            +
                    attr_accessor :verb
         | 
| 641 | 
            +
                  
         | 
| 642 | 
            +
                    def initialize(**args)
         | 
| 643 | 
            +
                       update!(**args)
         | 
| 644 | 
            +
                    end
         | 
| 645 | 
            +
                  
         | 
| 646 | 
            +
                    # Update properties of this object
         | 
| 647 | 
            +
                    def update!(**args)
         | 
| 648 | 
            +
                      @api_version = args[:api_version] if args.key?(:api_version)
         | 
| 649 | 
            +
                      @create_time = args[:create_time] if args.key?(:create_time)
         | 
| 650 | 
            +
                      @end_time = args[:end_time] if args.key?(:end_time)
         | 
| 651 | 
            +
                      @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
         | 
| 652 | 
            +
                      @status_message = args[:status_message] if args.key?(:status_message)
         | 
| 653 | 
            +
                      @target = args[:target] if args.key?(:target)
         | 
| 654 | 
            +
                      @verb = args[:verb] if args.key?(:verb)
         | 
| 655 | 
            +
                    end
         | 
| 656 | 
            +
                  end
         | 
| 657 | 
            +
                  
         | 
| 658 | 
            +
                  # Represents the metadata of the long-running operation.
         | 
| 659 | 
            +
                  class GoogleIamV3betaOperationMetadata
         | 
| 660 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 661 | 
            +
                  
         | 
| 662 | 
            +
                    # Output only. API version used to start the operation.
         | 
| 663 | 
            +
                    # Corresponds to the JSON property `apiVersion`
         | 
| 664 | 
            +
                    # @return [String]
         | 
| 665 | 
            +
                    attr_accessor :api_version
         | 
| 666 | 
            +
                  
         | 
| 667 | 
            +
                    # Output only. The time the operation was created.
         | 
| 668 | 
            +
                    # Corresponds to the JSON property `createTime`
         | 
| 669 | 
            +
                    # @return [String]
         | 
| 670 | 
            +
                    attr_accessor :create_time
         | 
| 671 | 
            +
                  
         | 
| 672 | 
            +
                    # Output only. The time the operation finished running.
         | 
| 673 | 
            +
                    # Corresponds to the JSON property `endTime`
         | 
| 674 | 
            +
                    # @return [String]
         | 
| 675 | 
            +
                    attr_accessor :end_time
         | 
| 676 | 
            +
                  
         | 
| 677 | 
            +
                    # Output only. Identifies whether the user has requested cancellation of the
         | 
| 678 | 
            +
                    # operation. Operations that have successfully been cancelled have Operation.
         | 
| 679 | 
            +
                    # error value with a google.rpc.Status.code of 1, corresponding to `Code.
         | 
| 680 | 
            +
                    # CANCELLED`.
         | 
| 681 | 
            +
                    # Corresponds to the JSON property `requestedCancellation`
         | 
| 682 | 
            +
                    # @return [Boolean]
         | 
| 683 | 
            +
                    attr_accessor :requested_cancellation
         | 
| 684 | 
            +
                    alias_method :requested_cancellation?, :requested_cancellation
         | 
| 685 | 
            +
                  
         | 
| 686 | 
            +
                    # Output only. Human-readable status of the operation, if any.
         | 
| 687 | 
            +
                    # Corresponds to the JSON property `statusMessage`
         | 
| 688 | 
            +
                    # @return [String]
         | 
| 689 | 
            +
                    attr_accessor :status_message
         | 
| 690 | 
            +
                  
         | 
| 691 | 
            +
                    # Output only. Server-defined resource path for the target of the
         | 
| 692 | 
            +
                    # Corresponds to the JSON property `target`
         | 
| 693 | 
            +
                    # @return [String]
         | 
| 694 | 
            +
                    attr_accessor :target
         | 
| 695 | 
            +
                  
         | 
| 696 | 
            +
                    # Output only. Name of the verb executed by the operation.
         | 
| 697 | 
            +
                    # Corresponds to the JSON property `verb`
         | 
| 698 | 
            +
                    # @return [String]
         | 
| 699 | 
            +
                    attr_accessor :verb
         | 
| 700 | 
            +
                  
         | 
| 701 | 
            +
                    def initialize(**args)
         | 
| 702 | 
            +
                       update!(**args)
         | 
| 703 | 
            +
                    end
         | 
| 704 | 
            +
                  
         | 
| 705 | 
            +
                    # Update properties of this object
         | 
| 706 | 
            +
                    def update!(**args)
         | 
| 707 | 
            +
                      @api_version = args[:api_version] if args.key?(:api_version)
         | 
| 708 | 
            +
                      @create_time = args[:create_time] if args.key?(:create_time)
         | 
| 709 | 
            +
                      @end_time = args[:end_time] if args.key?(:end_time)
         | 
| 710 | 
            +
                      @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
         | 
| 711 | 
            +
                      @status_message = args[:status_message] if args.key?(:status_message)
         | 
| 712 | 
            +
                      @target = args[:target] if args.key?(:target)
         | 
| 713 | 
            +
                      @verb = args[:verb] if args.key?(:verb)
         | 
| 714 | 
            +
                    end
         | 
| 715 | 
            +
                  end
         | 
| 716 | 
            +
                  
         | 
| 717 | 
            +
                  # Represents the metadata of the long-running operation.
         | 
| 718 | 
            +
                  class GoogleIamV3mainOperationMetadata
         | 
| 719 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 720 | 
            +
                  
         | 
| 721 | 
            +
                    # Output only. API version used to start the operation.
         | 
| 722 | 
            +
                    # Corresponds to the JSON property `apiVersion`
         | 
| 723 | 
            +
                    # @return [String]
         | 
| 724 | 
            +
                    attr_accessor :api_version
         | 
| 725 | 
            +
                  
         | 
| 726 | 
            +
                    # Output only. The time the operation was created.
         | 
| 727 | 
            +
                    # Corresponds to the JSON property `createTime`
         | 
| 728 | 
            +
                    # @return [String]
         | 
| 729 | 
            +
                    attr_accessor :create_time
         | 
| 730 | 
            +
                  
         | 
| 731 | 
            +
                    # Output only. The time the operation finished running.
         | 
| 732 | 
            +
                    # Corresponds to the JSON property `endTime`
         | 
| 733 | 
            +
                    # @return [String]
         | 
| 734 | 
            +
                    attr_accessor :end_time
         | 
| 735 | 
            +
                  
         | 
| 736 | 
            +
                    # Output only. Identifies whether the user has requested cancellation of the
         | 
| 737 | 
            +
                    # operation. Operations that have successfully been cancelled have Operation.
         | 
| 738 | 
            +
                    # error value with a google.rpc.Status.code of 1, corresponding to `Code.
         | 
| 739 | 
            +
                    # CANCELLED`.
         | 
| 740 | 
            +
                    # Corresponds to the JSON property `requestedCancellation`
         | 
| 741 | 
            +
                    # @return [Boolean]
         | 
| 742 | 
            +
                    attr_accessor :requested_cancellation
         | 
| 743 | 
            +
                    alias_method :requested_cancellation?, :requested_cancellation
         | 
| 744 | 
            +
                  
         | 
| 745 | 
            +
                    # Output only. Human-readable status of the operation, if any.
         | 
| 746 | 
            +
                    # Corresponds to the JSON property `statusMessage`
         | 
| 747 | 
            +
                    # @return [String]
         | 
| 748 | 
            +
                    attr_accessor :status_message
         | 
| 749 | 
            +
                  
         | 
| 750 | 
            +
                    # Output only. Server-defined resource path for the target of the
         | 
| 751 | 
            +
                    # Corresponds to the JSON property `target`
         | 
| 752 | 
            +
                    # @return [String]
         | 
| 753 | 
            +
                    attr_accessor :target
         | 
| 754 | 
            +
                  
         | 
| 755 | 
            +
                    # Output only. Name of the verb executed by the operation.
         | 
| 756 | 
            +
                    # Corresponds to the JSON property `verb`
         | 
| 757 | 
            +
                    # @return [String]
         | 
| 758 | 
            +
                    attr_accessor :verb
         | 
| 759 | 
            +
                  
         | 
| 760 | 
            +
                    def initialize(**args)
         | 
| 761 | 
            +
                       update!(**args)
         | 
| 762 | 
            +
                    end
         | 
| 763 | 
            +
                  
         | 
| 764 | 
            +
                    # Update properties of this object
         | 
| 765 | 
            +
                    def update!(**args)
         | 
| 766 | 
            +
                      @api_version = args[:api_version] if args.key?(:api_version)
         | 
| 767 | 
            +
                      @create_time = args[:create_time] if args.key?(:create_time)
         | 
| 768 | 
            +
                      @end_time = args[:end_time] if args.key?(:end_time)
         | 
| 769 | 
            +
                      @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
         | 
| 770 | 
            +
                      @status_message = args[:status_message] if args.key?(:status_message)
         | 
| 771 | 
            +
                      @target = args[:target] if args.key?(:target)
         | 
| 772 | 
            +
                      @verb = args[:verb] if args.key?(:verb)
         | 
| 773 | 
            +
                    end
         | 
| 774 | 
            +
                  end
         | 
| 775 | 
            +
                  
         | 
| 540 776 | 
             
                  # This resource represents a long-running operation that is the result of a
         | 
| 541 777 | 
             
                  # network API call.
         | 
| 542 778 | 
             
                  class GoogleLongrunningOperation
         | 
| @@ -16,13 +16,13 @@ module Google | |
| 16 16 | 
             
              module Apis
         | 
| 17 17 | 
             
                module IamV2beta
         | 
| 18 18 | 
             
                  # Version of the google-apis-iam_v2beta gem
         | 
| 19 | 
            -
                  GEM_VERSION = "0. | 
| 19 | 
            +
                  GEM_VERSION = "0.18.0"
         | 
| 20 20 |  | 
| 21 21 | 
             
                  # Version of the code generator used to generate this client
         | 
| 22 | 
            -
                  GENERATOR_VERSION = "0.15. | 
| 22 | 
            +
                  GENERATOR_VERSION = "0.15.1"
         | 
| 23 23 |  | 
| 24 24 | 
             
                  # Revision of the discovery document this client was generated from
         | 
| 25 | 
            -
                  REVISION = " | 
| 25 | 
            +
                  REVISION = "20241114"
         | 
| 26 26 | 
             
                end
         | 
| 27 27 | 
             
              end
         | 
| 28 28 | 
             
            end
         | 
| @@ -100,6 +100,30 @@ module Google | |
| 100 100 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 101 101 | 
             
                  end
         | 
| 102 102 |  | 
| 103 | 
            +
                  class GoogleIamV3OperationMetadata
         | 
| 104 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 105 | 
            +
                  
         | 
| 106 | 
            +
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 107 | 
            +
                  end
         | 
| 108 | 
            +
                  
         | 
| 109 | 
            +
                  class GoogleIamV3alphaOperationMetadata
         | 
| 110 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 111 | 
            +
                  
         | 
| 112 | 
            +
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 113 | 
            +
                  end
         | 
| 114 | 
            +
                  
         | 
| 115 | 
            +
                  class GoogleIamV3betaOperationMetadata
         | 
| 116 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 117 | 
            +
                  
         | 
| 118 | 
            +
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 119 | 
            +
                  end
         | 
| 120 | 
            +
                  
         | 
| 121 | 
            +
                  class GoogleIamV3mainOperationMetadata
         | 
| 122 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 123 | 
            +
                  
         | 
| 124 | 
            +
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 125 | 
            +
                  end
         | 
| 126 | 
            +
                  
         | 
| 103 127 | 
             
                  class GoogleLongrunningOperation
         | 
| 104 128 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 105 129 |  | 
| @@ -242,6 +266,58 @@ module Google | |
| 242 266 | 
             
                    end
         | 
| 243 267 | 
             
                  end
         | 
| 244 268 |  | 
| 269 | 
            +
                  class GoogleIamV3OperationMetadata
         | 
| 270 | 
            +
                    # @private
         | 
| 271 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 272 | 
            +
                      property :api_version, as: 'apiVersion'
         | 
| 273 | 
            +
                      property :create_time, as: 'createTime'
         | 
| 274 | 
            +
                      property :end_time, as: 'endTime'
         | 
| 275 | 
            +
                      property :requested_cancellation, as: 'requestedCancellation'
         | 
| 276 | 
            +
                      property :status_message, as: 'statusMessage'
         | 
| 277 | 
            +
                      property :target, as: 'target'
         | 
| 278 | 
            +
                      property :verb, as: 'verb'
         | 
| 279 | 
            +
                    end
         | 
| 280 | 
            +
                  end
         | 
| 281 | 
            +
                  
         | 
| 282 | 
            +
                  class GoogleIamV3alphaOperationMetadata
         | 
| 283 | 
            +
                    # @private
         | 
| 284 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 285 | 
            +
                      property :api_version, as: 'apiVersion'
         | 
| 286 | 
            +
                      property :create_time, as: 'createTime'
         | 
| 287 | 
            +
                      property :end_time, as: 'endTime'
         | 
| 288 | 
            +
                      property :requested_cancellation, as: 'requestedCancellation'
         | 
| 289 | 
            +
                      property :status_message, as: 'statusMessage'
         | 
| 290 | 
            +
                      property :target, as: 'target'
         | 
| 291 | 
            +
                      property :verb, as: 'verb'
         | 
| 292 | 
            +
                    end
         | 
| 293 | 
            +
                  end
         | 
| 294 | 
            +
                  
         | 
| 295 | 
            +
                  class GoogleIamV3betaOperationMetadata
         | 
| 296 | 
            +
                    # @private
         | 
| 297 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 298 | 
            +
                      property :api_version, as: 'apiVersion'
         | 
| 299 | 
            +
                      property :create_time, as: 'createTime'
         | 
| 300 | 
            +
                      property :end_time, as: 'endTime'
         | 
| 301 | 
            +
                      property :requested_cancellation, as: 'requestedCancellation'
         | 
| 302 | 
            +
                      property :status_message, as: 'statusMessage'
         | 
| 303 | 
            +
                      property :target, as: 'target'
         | 
| 304 | 
            +
                      property :verb, as: 'verb'
         | 
| 305 | 
            +
                    end
         | 
| 306 | 
            +
                  end
         | 
| 307 | 
            +
                  
         | 
| 308 | 
            +
                  class GoogleIamV3mainOperationMetadata
         | 
| 309 | 
            +
                    # @private
         | 
| 310 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 311 | 
            +
                      property :api_version, as: 'apiVersion'
         | 
| 312 | 
            +
                      property :create_time, as: 'createTime'
         | 
| 313 | 
            +
                      property :end_time, as: 'endTime'
         | 
| 314 | 
            +
                      property :requested_cancellation, as: 'requestedCancellation'
         | 
| 315 | 
            +
                      property :status_message, as: 'statusMessage'
         | 
| 316 | 
            +
                      property :target, as: 'target'
         | 
| 317 | 
            +
                      property :verb, as: 'verb'
         | 
| 318 | 
            +
                    end
         | 
| 319 | 
            +
                  end
         | 
| 320 | 
            +
                  
         | 
| 245 321 | 
             
                  class GoogleLongrunningOperation
         | 
| 246 322 | 
             
                    # @private
         | 
| 247 323 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: google-apis-iam_v2beta
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.18.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Google LLC
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2024- | 
| 11 | 
            +
            date: 2024-12-04 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: google-apis-core
         | 
| @@ -59,7 +59,7 @@ licenses: | |
| 59 59 | 
             
            metadata:
         | 
| 60 60 | 
             
              bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
         | 
| 61 61 | 
             
              changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v2beta/CHANGELOG.md
         | 
| 62 | 
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v2beta/v0. | 
| 62 | 
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v2beta/v0.18.0
         | 
| 63 63 | 
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v2beta
         | 
| 64 64 | 
             
            post_install_message: 
         | 
| 65 65 | 
             
            rdoc_options: []
         | 
| @@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 76 76 | 
             
                - !ruby/object:Gem::Version
         | 
| 77 77 | 
             
                  version: '0'
         | 
| 78 78 | 
             
            requirements: []
         | 
| 79 | 
            -
            rubygems_version: 3.5. | 
| 79 | 
            +
            rubygems_version: 3.5.22
         | 
| 80 80 | 
             
            signing_key: 
         | 
| 81 81 | 
             
            specification_version: 4
         | 
| 82 82 | 
             
            summary: Simple REST client for Identity and Access Management (IAM) API V2beta
         |