google-apis-gkehub_v1beta 0.18.0 → 0.19.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: 664a338a9a266bc2aaa9a019605e57a97d8f0a7bb3b6750901afcf7fade2c637
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 71d7b511851f9988b2e53b74e4d0dfab6c0dd4e24f3c96d3a9d62c0cc636faeb
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 8dc3f9fd445184b117adbb4c77a525b87ae8445e84def8e4c2adc0976fe21d41564641e22466ddfac4b47a6666ca41d3407fba6bb252fa6907f29161e37ed3ad
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: ac47cc53af0562f1c1310701d67c231228d1a5743bb0c782d3ffa73ffd4b38a4734069f891ddd4e600ea8b2dff34778a92475dd340f28530e64477544173e564
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    
| 
         @@ -1513,6 +1513,11 @@ module Google 
     | 
|
| 
       1513 
1513 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       1514 
1514 
     | 
    
         
             
                    attr_accessor :client_id
         
     | 
| 
       1515 
1515 
     | 
    
         | 
| 
      
 1516 
     | 
    
         
            +
                    # Unencrypted OIDC client secret will be passed to the GKE Hub CLH.
         
     | 
| 
      
 1517 
     | 
    
         
            +
                    # Corresponds to the JSON property `clientSecret`
         
     | 
| 
      
 1518 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 1519 
     | 
    
         
            +
                    attr_accessor :client_secret
         
     | 
| 
      
 1520 
     | 
    
         
            +
                  
         
     | 
| 
       1516 
1521 
     | 
    
         
             
                    # Flag to denote if reverse proxy is used to connect to auth provider. This flag
         
     | 
| 
       1517 
1522 
     | 
    
         
             
                    # should be set to true when provider is not reachable by Google Cloud Console.
         
     | 
| 
       1518 
1523 
     | 
    
         
             
                    # Corresponds to the JSON property `deployCloudConsoleProxy`
         
     | 
| 
         @@ -1520,6 +1525,12 @@ module Google 
     | 
|
| 
       1520 
1525 
     | 
    
         
             
                    attr_accessor :deploy_cloud_console_proxy
         
     | 
| 
       1521 
1526 
     | 
    
         
             
                    alias_method :deploy_cloud_console_proxy?, :deploy_cloud_console_proxy
         
     | 
| 
       1522 
1527 
     | 
    
         | 
| 
      
 1528 
     | 
    
         
            +
                    # Output only. Encrypted OIDC Client secret
         
     | 
| 
      
 1529 
     | 
    
         
            +
                    # Corresponds to the JSON property `encryptedClientSecret`
         
     | 
| 
      
 1530 
     | 
    
         
            +
                    # NOTE: Values are automatically base64 encoded/decoded in the client library.
         
     | 
| 
      
 1531 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 1532 
     | 
    
         
            +
                    attr_accessor :encrypted_client_secret
         
     | 
| 
      
 1533 
     | 
    
         
            +
                  
         
     | 
| 
       1523 
1534 
     | 
    
         
             
                    # Comma-separated list of key-value pairs.
         
     | 
| 
       1524 
1535 
     | 
    
         
             
                    # Corresponds to the JSON property `extraParams`
         
     | 
| 
       1525 
1536 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
         @@ -1570,7 +1581,9 @@ module Google 
     | 
|
| 
       1570 
1581 
     | 
    
         
             
                    def update!(**args)
         
     | 
| 
       1571 
1582 
     | 
    
         
             
                      @certificate_authority_data = args[:certificate_authority_data] if args.key?(:certificate_authority_data)
         
     | 
| 
       1572 
1583 
     | 
    
         
             
                      @client_id = args[:client_id] if args.key?(:client_id)
         
     | 
| 
      
 1584 
     | 
    
         
            +
                      @client_secret = args[:client_secret] if args.key?(:client_secret)
         
     | 
| 
       1573 
1585 
     | 
    
         
             
                      @deploy_cloud_console_proxy = args[:deploy_cloud_console_proxy] if args.key?(:deploy_cloud_console_proxy)
         
     | 
| 
      
 1586 
     | 
    
         
            +
                      @encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
         
     | 
| 
       1574 
1587 
     | 
    
         
             
                      @extra_params = args[:extra_params] if args.key?(:extra_params)
         
     | 
| 
       1575 
1588 
     | 
    
         
             
                      @group_prefix = args[:group_prefix] if args.key?(:group_prefix)
         
     | 
| 
       1576 
1589 
     | 
    
         
             
                      @groups_claim = args[:groups_claim] if args.key?(:groups_claim)
         
     | 
| 
         @@ -1731,6 +1744,12 @@ module Google 
     | 
|
| 
       1731 
1744 
     | 
    
         
             
                    # @return [Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec]
         
     | 
| 
       1732 
1745 
     | 
    
         
             
                    attr_accessor :identityservice
         
     | 
| 
       1733 
1746 
     | 
    
         | 
| 
      
 1747 
     | 
    
         
            +
                    # **Policy Controller**: Configuration for a single cluster. Intended to
         
     | 
| 
      
 1748 
     | 
    
         
            +
                    # parallel the PolicyController CR.
         
     | 
| 
      
 1749 
     | 
    
         
            +
                    # Corresponds to the JSON property `policycontroller`
         
     | 
| 
      
 1750 
     | 
    
         
            +
                    # @return [Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec]
         
     | 
| 
      
 1751 
     | 
    
         
            +
                    attr_accessor :policycontroller
         
     | 
| 
      
 1752 
     | 
    
         
            +
                  
         
     | 
| 
       1734 
1753 
     | 
    
         
             
                    def initialize(**args)
         
     | 
| 
       1735 
1754 
     | 
    
         
             
                       update!(**args)
         
     | 
| 
       1736 
1755 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -1741,6 +1760,7 @@ module Google 
     | 
|
| 
       1741 
1760 
     | 
    
         
             
                      @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
         
     | 
| 
       1742 
1761 
     | 
    
         
             
                      @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
         
     | 
| 
       1743 
1762 
     | 
    
         
             
                      @identityservice = args[:identityservice] if args.key?(:identityservice)
         
     | 
| 
      
 1763 
     | 
    
         
            +
                      @policycontroller = args[:policycontroller] if args.key?(:policycontroller)
         
     | 
| 
       1744 
1764 
     | 
    
         
             
                    end
         
     | 
| 
       1745 
1765 
     | 
    
         
             
                  end
         
     | 
| 
       1746 
1766 
     | 
    
         | 
| 
         @@ -16,13 +16,13 @@ module Google 
     | 
|
| 
       16 
16 
     | 
    
         
             
              module Apis
         
     | 
| 
       17 
17 
     | 
    
         
             
                module GkehubV1beta
         
     | 
| 
       18 
18 
     | 
    
         
             
                  # Version of the google-apis-gkehub_v1beta gem
         
     | 
| 
       19 
     | 
    
         
            -
                  GEM_VERSION = "0. 
     | 
| 
      
 19 
     | 
    
         
            +
                  GEM_VERSION = "0.19.0"
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                  # Version of the code generator used to generate this client
         
     | 
| 
       22 
22 
     | 
    
         
             
                  GENERATOR_VERSION = "0.4.1"
         
     | 
| 
       23 
23 
     | 
    
         | 
| 
       24 
24 
     | 
    
         
             
                  # Revision of the discovery document this client was generated from
         
     | 
| 
       25 
     | 
    
         
            -
                  REVISION = " 
     | 
| 
      
 25 
     | 
    
         
            +
                  REVISION = "20220204"
         
     | 
| 
       26 
26 
     | 
    
         
             
                end
         
     | 
| 
       27 
27 
     | 
    
         
             
              end
         
     | 
| 
       28 
28 
     | 
    
         
             
            end
         
     | 
| 
         @@ -836,7 +836,9 @@ module Google 
     | 
|
| 
       836 
836 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
       837 
837 
     | 
    
         
             
                      property :certificate_authority_data, as: 'certificateAuthorityData'
         
     | 
| 
       838 
838 
     | 
    
         
             
                      property :client_id, as: 'clientId'
         
     | 
| 
      
 839 
     | 
    
         
            +
                      property :client_secret, as: 'clientSecret'
         
     | 
| 
       839 
840 
     | 
    
         
             
                      property :deploy_cloud_console_proxy, as: 'deployCloudConsoleProxy'
         
     | 
| 
      
 841 
     | 
    
         
            +
                      property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
         
     | 
| 
       840 
842 
     | 
    
         
             
                      property :extra_params, as: 'extraParams'
         
     | 
| 
       841 
843 
     | 
    
         
             
                      property :group_prefix, as: 'groupPrefix'
         
     | 
| 
       842 
844 
     | 
    
         
             
                      property :groups_claim, as: 'groupsClaim'
         
     | 
| 
         @@ -897,6 +899,8 @@ module Google 
     | 
|
| 
       897 
899 
     | 
    
         | 
| 
       898 
900 
     | 
    
         
             
                      property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec::Representation
         
     | 
| 
       899 
901 
     | 
    
         | 
| 
      
 902 
     | 
    
         
            +
                      property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec, decorator: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec::Representation
         
     | 
| 
      
 903 
     | 
    
         
            +
                  
         
     | 
| 
       900 
904 
     | 
    
         
             
                    end
         
     | 
| 
       901 
905 
     | 
    
         
             
                  end
         
     | 
| 
       902 
906 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: google-apis-gkehub_v1beta
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.19.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: 2022-02- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2022-02-14 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: google-apis-core
         
     | 
| 
         @@ -58,7 +58,7 @@ licenses: 
     | 
|
| 
       58 
58 
     | 
    
         
             
            metadata:
         
     | 
| 
       59 
59 
     | 
    
         
             
              bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
         
     | 
| 
       60 
60 
     | 
    
         
             
              changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta/CHANGELOG.md
         
     | 
| 
       61 
     | 
    
         
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0. 
     | 
| 
      
 61 
     | 
    
         
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.19.0
         
     | 
| 
       62 
62 
     | 
    
         
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
         
     | 
| 
       63 
63 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       64 
64 
     | 
    
         
             
            rdoc_options: []
         
     |