google-apis-dialogflow_v2 0.70.0 → 0.71.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: 40572d59dd345dba727eb18e840584d5caf4ff2cc235b3c513fd7c922f4e29f3
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 4e64bc9b4a987f9f19795f4011381e7ae4fb4c1cb838838703ce0f7b1b4fee8d
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: ea53495e799f85ec1c08ce1a7571b86da3271c9c78dd3d8ca6f5194762f3789c8dce45583864079c5643f26483867e11d515d8e513903bc3eebada2edc127c8a
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 0307cb8e75213c291954a5aec9d6e7d87e71d04126c39275530bb84e9c3a19da3114d7c9b728e520ce79ff53d289e9acdd59cbc0fbc6cdaed2cd5f1f68e69a9c
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    
| 
         @@ -9091,6 +9091,37 @@ module Google 
     | 
|
| 
       9091 
9091 
     | 
    
         
             
                    end
         
     | 
| 
       9092 
9092 
     | 
    
         
             
                  end
         
     | 
| 
       9093 
9093 
     | 
    
         | 
| 
      
 9094 
     | 
    
         
            +
                  # A customer-managed encryption key specification that can be applied to all
         
     | 
| 
      
 9095 
     | 
    
         
            +
                  # created resources (e.g. Conversation).
         
     | 
| 
      
 9096 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2EncryptionSpec
         
     | 
| 
      
 9097 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 9098 
     | 
    
         
            +
                  
         
     | 
| 
      
 9099 
     | 
    
         
            +
                    # Required. The name of customer-managed encryption key that is used to secure a
         
     | 
| 
      
 9100 
     | 
    
         
            +
                    # resource and its sub-resources. If empty, the resource is secured by the
         
     | 
| 
      
 9101 
     | 
    
         
            +
                    # default Google encryption key. Only the key in the same location as this
         
     | 
| 
      
 9102 
     | 
    
         
            +
                    # resource is allowed to be used for encryption. Format: `projects/`project`/
         
     | 
| 
      
 9103 
     | 
    
         
            +
                    # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
         
     | 
| 
      
 9104 
     | 
    
         
            +
                    # Corresponds to the JSON property `kmsKey`
         
     | 
| 
      
 9105 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 9106 
     | 
    
         
            +
                    attr_accessor :kms_key
         
     | 
| 
      
 9107 
     | 
    
         
            +
                  
         
     | 
| 
      
 9108 
     | 
    
         
            +
                    # Immutable. The resource name of the encryption key specification resource.
         
     | 
| 
      
 9109 
     | 
    
         
            +
                    # Format: projects/`project`/locations/`location`/encryptionSpec
         
     | 
| 
      
 9110 
     | 
    
         
            +
                    # Corresponds to the JSON property `name`
         
     | 
| 
      
 9111 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 9112 
     | 
    
         
            +
                    attr_accessor :name
         
     | 
| 
      
 9113 
     | 
    
         
            +
                  
         
     | 
| 
      
 9114 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 9115 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 9116 
     | 
    
         
            +
                    end
         
     | 
| 
      
 9117 
     | 
    
         
            +
                  
         
     | 
| 
      
 9118 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 9119 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 9120 
     | 
    
         
            +
                      @kms_key = args[:kms_key] if args.key?(:kms_key)
         
     | 
| 
      
 9121 
     | 
    
         
            +
                      @name = args[:name] if args.key?(:name)
         
     | 
| 
      
 9122 
     | 
    
         
            +
                    end
         
     | 
| 
      
 9123 
     | 
    
         
            +
                  end
         
     | 
| 
      
 9124 
     | 
    
         
            +
                  
         
     | 
| 
       9094 
9125 
     | 
    
         
             
                  # Each intent parameter has a type, called the entity type, which dictates
         
     | 
| 
       9095 
9126 
     | 
    
         
             
                  # exactly how data from an end-user expression is extracted. Dialogflow provides
         
     | 
| 
       9096 
9127 
     | 
    
         
             
                  # predefined system entities that can match many common types of data. For
         
     | 
| 
         @@ -10700,6 +10731,45 @@ module Google 
     | 
|
| 
       10700 
10731 
     | 
    
         
             
                    end
         
     | 
| 
       10701 
10732 
     | 
    
         
             
                  end
         
     | 
| 
       10702 
10733 
     | 
    
         | 
| 
      
 10734 
     | 
    
         
            +
                  # Metadata for initializing a location-level encryption specification.
         
     | 
| 
      
 10735 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
         
     | 
| 
      
 10736 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 10737 
     | 
    
         
            +
                  
         
     | 
| 
      
 10738 
     | 
    
         
            +
                    # The request to initialize a location-level encryption specification.
         
     | 
| 
      
 10739 
     | 
    
         
            +
                    # Corresponds to the JSON property `request`
         
     | 
| 
      
 10740 
     | 
    
         
            +
                    # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest]
         
     | 
| 
      
 10741 
     | 
    
         
            +
                    attr_accessor :request
         
     | 
| 
      
 10742 
     | 
    
         
            +
                  
         
     | 
| 
      
 10743 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 10744 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 10745 
     | 
    
         
            +
                    end
         
     | 
| 
      
 10746 
     | 
    
         
            +
                  
         
     | 
| 
      
 10747 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 10748 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 10749 
     | 
    
         
            +
                      @request = args[:request] if args.key?(:request)
         
     | 
| 
      
 10750 
     | 
    
         
            +
                    end
         
     | 
| 
      
 10751 
     | 
    
         
            +
                  end
         
     | 
| 
      
 10752 
     | 
    
         
            +
                  
         
     | 
| 
      
 10753 
     | 
    
         
            +
                  # The request to initialize a location-level encryption specification.
         
     | 
| 
      
 10754 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
         
     | 
| 
      
 10755 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 10756 
     | 
    
         
            +
                  
         
     | 
| 
      
 10757 
     | 
    
         
            +
                    # A customer-managed encryption key specification that can be applied to all
         
     | 
| 
      
 10758 
     | 
    
         
            +
                    # created resources (e.g. Conversation).
         
     | 
| 
      
 10759 
     | 
    
         
            +
                    # Corresponds to the JSON property `encryptionSpec`
         
     | 
| 
      
 10760 
     | 
    
         
            +
                    # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EncryptionSpec]
         
     | 
| 
      
 10761 
     | 
    
         
            +
                    attr_accessor :encryption_spec
         
     | 
| 
      
 10762 
     | 
    
         
            +
                  
         
     | 
| 
      
 10763 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 10764 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 10765 
     | 
    
         
            +
                    end
         
     | 
| 
      
 10766 
     | 
    
         
            +
                  
         
     | 
| 
      
 10767 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 10768 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 10769 
     | 
    
         
            +
                      @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
         
     | 
| 
      
 10770 
     | 
    
         
            +
                    end
         
     | 
| 
      
 10771 
     | 
    
         
            +
                  end
         
     | 
| 
      
 10772 
     | 
    
         
            +
                  
         
     | 
| 
       10703 
10773 
     | 
    
         
             
                  # Instructs the speech recognizer how to process the audio content.
         
     | 
| 
       10704 
10774 
     | 
    
         
             
                  class GoogleCloudDialogflowV2InputAudioConfig
         
     | 
| 
       10705 
10775 
     | 
    
         
             
                    include Google::Apis::Core::Hashable
         
     | 
| 
         @@ -15048,6 +15118,37 @@ module Google 
     | 
|
| 
       15048 
15118 
     | 
    
         
             
                    end
         
     | 
| 
       15049 
15119 
     | 
    
         
             
                  end
         
     | 
| 
       15050 
15120 
     | 
    
         | 
| 
      
 15121 
     | 
    
         
            +
                  # A customer-managed encryption key specification that can be applied to all
         
     | 
| 
      
 15122 
     | 
    
         
            +
                  # created resources (e.g. Conversation).
         
     | 
| 
      
 15123 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2beta1EncryptionSpec
         
     | 
| 
      
 15124 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 15125 
     | 
    
         
            +
                  
         
     | 
| 
      
 15126 
     | 
    
         
            +
                    # Required. The name of customer-managed encryption key that is used to secure a
         
     | 
| 
      
 15127 
     | 
    
         
            +
                    # resource and its sub-resources. If empty, the resource is secured by the
         
     | 
| 
      
 15128 
     | 
    
         
            +
                    # default Google encryption key. Only the key in the same location as this
         
     | 
| 
      
 15129 
     | 
    
         
            +
                    # resource is allowed to be used for encryption. Format: `projects/`project`/
         
     | 
| 
      
 15130 
     | 
    
         
            +
                    # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
         
     | 
| 
      
 15131 
     | 
    
         
            +
                    # Corresponds to the JSON property `kmsKey`
         
     | 
| 
      
 15132 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 15133 
     | 
    
         
            +
                    attr_accessor :kms_key
         
     | 
| 
      
 15134 
     | 
    
         
            +
                  
         
     | 
| 
      
 15135 
     | 
    
         
            +
                    # Immutable. The resource name of the encryption key specification resource.
         
     | 
| 
      
 15136 
     | 
    
         
            +
                    # Format: projects/`project`/locations/`location`/encryptionSpec
         
     | 
| 
      
 15137 
     | 
    
         
            +
                    # Corresponds to the JSON property `name`
         
     | 
| 
      
 15138 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 15139 
     | 
    
         
            +
                    attr_accessor :name
         
     | 
| 
      
 15140 
     | 
    
         
            +
                  
         
     | 
| 
      
 15141 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 15142 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 15143 
     | 
    
         
            +
                    end
         
     | 
| 
      
 15144 
     | 
    
         
            +
                  
         
     | 
| 
      
 15145 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 15146 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 15147 
     | 
    
         
            +
                      @kms_key = args[:kms_key] if args.key?(:kms_key)
         
     | 
| 
      
 15148 
     | 
    
         
            +
                      @name = args[:name] if args.key?(:name)
         
     | 
| 
      
 15149 
     | 
    
         
            +
                    end
         
     | 
| 
      
 15150 
     | 
    
         
            +
                  end
         
     | 
| 
      
 15151 
     | 
    
         
            +
                  
         
     | 
| 
       15051 
15152 
     | 
    
         
             
                  # Each intent parameter has a type, called the entity type, which dictates
         
     | 
| 
       15052 
15153 
     | 
    
         
             
                  # exactly how data from an end-user expression is extracted. Dialogflow provides
         
     | 
| 
       15053 
15154 
     | 
    
         
             
                  # predefined system entities that can match many common types of data. For
         
     | 
| 
         @@ -15366,6 +15467,45 @@ module Google 
     | 
|
| 
       15366 
15467 
     | 
    
         
             
                    end
         
     | 
| 
       15367 
15468 
     | 
    
         
             
                  end
         
     | 
| 
       15368 
15469 
     | 
    
         | 
| 
      
 15470 
     | 
    
         
            +
                  # Metadata for initializing a location-level encryption specification.
         
     | 
| 
      
 15471 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
         
     | 
| 
      
 15472 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 15473 
     | 
    
         
            +
                  
         
     | 
| 
      
 15474 
     | 
    
         
            +
                    # The request to initialize a location-level encryption specification.
         
     | 
| 
      
 15475 
     | 
    
         
            +
                    # Corresponds to the JSON property `request`
         
     | 
| 
      
 15476 
     | 
    
         
            +
                    # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest]
         
     | 
| 
      
 15477 
     | 
    
         
            +
                    attr_accessor :request
         
     | 
| 
      
 15478 
     | 
    
         
            +
                  
         
     | 
| 
      
 15479 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 15480 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 15481 
     | 
    
         
            +
                    end
         
     | 
| 
      
 15482 
     | 
    
         
            +
                  
         
     | 
| 
      
 15483 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 15484 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 15485 
     | 
    
         
            +
                      @request = args[:request] if args.key?(:request)
         
     | 
| 
      
 15486 
     | 
    
         
            +
                    end
         
     | 
| 
      
 15487 
     | 
    
         
            +
                  end
         
     | 
| 
      
 15488 
     | 
    
         
            +
                  
         
     | 
| 
      
 15489 
     | 
    
         
            +
                  # The request to initialize a location-level encryption specification.
         
     | 
| 
      
 15490 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
         
     | 
| 
      
 15491 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 15492 
     | 
    
         
            +
                  
         
     | 
| 
      
 15493 
     | 
    
         
            +
                    # A customer-managed encryption key specification that can be applied to all
         
     | 
| 
      
 15494 
     | 
    
         
            +
                    # created resources (e.g. Conversation).
         
     | 
| 
      
 15495 
     | 
    
         
            +
                    # Corresponds to the JSON property `encryptionSpec`
         
     | 
| 
      
 15496 
     | 
    
         
            +
                    # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1EncryptionSpec]
         
     | 
| 
      
 15497 
     | 
    
         
            +
                    attr_accessor :encryption_spec
         
     | 
| 
      
 15498 
     | 
    
         
            +
                  
         
     | 
| 
      
 15499 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 15500 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 15501 
     | 
    
         
            +
                    end
         
     | 
| 
      
 15502 
     | 
    
         
            +
                  
         
     | 
| 
      
 15503 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 15504 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 15505 
     | 
    
         
            +
                      @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
         
     | 
| 
      
 15506 
     | 
    
         
            +
                    end
         
     | 
| 
      
 15507 
     | 
    
         
            +
                  end
         
     | 
| 
      
 15508 
     | 
    
         
            +
                  
         
     | 
| 
       15369 
15509 
     | 
    
         
             
                  # An intent categorizes an end-user's intention for one conversation turn. For
         
     | 
| 
       15370 
15510 
     | 
    
         
             
                  # each agent, you define many intents, where your combined intents can handle a
         
     | 
| 
       15371 
15511 
     | 
    
         
             
                  # complete conversation. When an end-user writes or says something, referred to
         
     | 
| 
         @@ -16,13 +16,13 @@ module Google 
     | 
|
| 
       16 
16 
     | 
    
         
             
              module Apis
         
     | 
| 
       17 
17 
     | 
    
         
             
                module DialogflowV2
         
     | 
| 
       18 
18 
     | 
    
         
             
                  # Version of the google-apis-dialogflow_v2 gem
         
     | 
| 
       19 
     | 
    
         
            -
                  GEM_VERSION = "0. 
     | 
| 
      
 19 
     | 
    
         
            +
                  GEM_VERSION = "0.71.0"
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                  # Version of the code generator used to generate this client
         
     | 
| 
       22 
22 
     | 
    
         
             
                  GENERATOR_VERSION = "0.12.0"
         
     | 
| 
       23 
23 
     | 
    
         | 
| 
       24 
24 
     | 
    
         
             
                  # Revision of the discovery document this client was generated from
         
     | 
| 
       25 
     | 
    
         
            -
                  REVISION = " 
     | 
| 
      
 25 
     | 
    
         
            +
                  REVISION = "20231019"
         
     | 
| 
       26 
26 
     | 
    
         
             
                end
         
     | 
| 
       27 
27 
     | 
    
         
             
              end
         
     | 
| 
       28 
28 
     | 
    
         
             
            end
         
     | 
| 
         @@ -1498,6 +1498,12 @@ module Google 
     | 
|
| 
       1498 
1498 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       1499 
1499 
     | 
    
         
             
                  end
         
     | 
| 
       1500 
1500 
     | 
    
         | 
| 
      
 1501 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2EncryptionSpec
         
     | 
| 
      
 1502 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 1503 
     | 
    
         
            +
                  
         
     | 
| 
      
 1504 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 1505 
     | 
    
         
            +
                  end
         
     | 
| 
      
 1506 
     | 
    
         
            +
                  
         
     | 
| 
       1501 
1507 
     | 
    
         
             
                  class GoogleCloudDialogflowV2EntityType
         
     | 
| 
       1502 
1508 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       1503 
1509 
     | 
    
         | 
| 
         @@ -1786,6 +1792,18 @@ module Google 
     | 
|
| 
       1786 
1792 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       1787 
1793 
     | 
    
         
             
                  end
         
     | 
| 
       1788 
1794 
     | 
    
         | 
| 
      
 1795 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
         
     | 
| 
      
 1796 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 1797 
     | 
    
         
            +
                  
         
     | 
| 
      
 1798 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 1799 
     | 
    
         
            +
                  end
         
     | 
| 
      
 1800 
     | 
    
         
            +
                  
         
     | 
| 
      
 1801 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
         
     | 
| 
      
 1802 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 1803 
     | 
    
         
            +
                  
         
     | 
| 
      
 1804 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 1805 
     | 
    
         
            +
                  end
         
     | 
| 
      
 1806 
     | 
    
         
            +
                  
         
     | 
| 
       1789 
1807 
     | 
    
         
             
                  class GoogleCloudDialogflowV2InputAudioConfig
         
     | 
| 
       1790 
1808 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       1791 
1809 
     | 
    
         | 
| 
         @@ -2494,6 +2512,12 @@ module Google 
     | 
|
| 
       2494 
2512 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       2495 
2513 
     | 
    
         
             
                  end
         
     | 
| 
       2496 
2514 
     | 
    
         | 
| 
      
 2515 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2beta1EncryptionSpec
         
     | 
| 
      
 2516 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 2517 
     | 
    
         
            +
                  
         
     | 
| 
      
 2518 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 2519 
     | 
    
         
            +
                  end
         
     | 
| 
      
 2520 
     | 
    
         
            +
                  
         
     | 
| 
       2497 
2521 
     | 
    
         
             
                  class GoogleCloudDialogflowV2beta1EntityType
         
     | 
| 
       2498 
2522 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       2499 
2523 
     | 
    
         | 
| 
         @@ -2548,6 +2572,18 @@ module Google 
     | 
|
| 
       2548 
2572 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       2549 
2573 
     | 
    
         
             
                  end
         
     | 
| 
       2550 
2574 
     | 
    
         | 
| 
      
 2575 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
         
     | 
| 
      
 2576 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 2577 
     | 
    
         
            +
                  
         
     | 
| 
      
 2578 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 2579 
     | 
    
         
            +
                  end
         
     | 
| 
      
 2580 
     | 
    
         
            +
                  
         
     | 
| 
      
 2581 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
         
     | 
| 
      
 2582 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 2583 
     | 
    
         
            +
                  
         
     | 
| 
      
 2584 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 2585 
     | 
    
         
            +
                  end
         
     | 
| 
      
 2586 
     | 
    
         
            +
                  
         
     | 
| 
       2551 
2587 
     | 
    
         
             
                  class GoogleCloudDialogflowV2beta1Intent
         
     | 
| 
       2552 
2588 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       2553 
2589 
     | 
    
         | 
| 
         @@ -5517,6 +5553,14 @@ module Google 
     | 
|
| 
       5517 
5553 
     | 
    
         
             
                    end
         
     | 
| 
       5518 
5554 
     | 
    
         
             
                  end
         
     | 
| 
       5519 
5555 
     | 
    
         | 
| 
      
 5556 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2EncryptionSpec
         
     | 
| 
      
 5557 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 5558 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 5559 
     | 
    
         
            +
                      property :kms_key, as: 'kmsKey'
         
     | 
| 
      
 5560 
     | 
    
         
            +
                      property :name, as: 'name'
         
     | 
| 
      
 5561 
     | 
    
         
            +
                    end
         
     | 
| 
      
 5562 
     | 
    
         
            +
                  end
         
     | 
| 
      
 5563 
     | 
    
         
            +
                  
         
     | 
| 
       5520 
5564 
     | 
    
         
             
                  class GoogleCloudDialogflowV2EntityType
         
     | 
| 
       5521 
5565 
     | 
    
         
             
                    # @private
         
     | 
| 
       5522 
5566 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -5972,6 +6016,22 @@ module Google 
     | 
|
| 
       5972 
6016 
     | 
    
         
             
                    end
         
     | 
| 
       5973 
6017 
     | 
    
         
             
                  end
         
     | 
| 
       5974 
6018 
     | 
    
         | 
| 
      
 6019 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
         
     | 
| 
      
 6020 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 6021 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 6022 
     | 
    
         
            +
                      property :request, as: 'request', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest::Representation
         
     | 
| 
      
 6023 
     | 
    
         
            +
                  
         
     | 
| 
      
 6024 
     | 
    
         
            +
                    end
         
     | 
| 
      
 6025 
     | 
    
         
            +
                  end
         
     | 
| 
      
 6026 
     | 
    
         
            +
                  
         
     | 
| 
      
 6027 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
         
     | 
| 
      
 6028 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 6029 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 6030 
     | 
    
         
            +
                      property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EncryptionSpec, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EncryptionSpec::Representation
         
     | 
| 
      
 6031 
     | 
    
         
            +
                  
         
     | 
| 
      
 6032 
     | 
    
         
            +
                    end
         
     | 
| 
      
 6033 
     | 
    
         
            +
                  end
         
     | 
| 
      
 6034 
     | 
    
         
            +
                  
         
     | 
| 
       5975 
6035 
     | 
    
         
             
                  class GoogleCloudDialogflowV2InputAudioConfig
         
     | 
| 
       5976 
6036 
     | 
    
         
             
                    # @private
         
     | 
| 
       5977 
6037 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -7165,6 +7225,14 @@ module Google 
     | 
|
| 
       7165 
7225 
     | 
    
         
             
                    end
         
     | 
| 
       7166 
7226 
     | 
    
         
             
                  end
         
     | 
| 
       7167 
7227 
     | 
    
         | 
| 
      
 7228 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2beta1EncryptionSpec
         
     | 
| 
      
 7229 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 7230 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 7231 
     | 
    
         
            +
                      property :kms_key, as: 'kmsKey'
         
     | 
| 
      
 7232 
     | 
    
         
            +
                      property :name, as: 'name'
         
     | 
| 
      
 7233 
     | 
    
         
            +
                    end
         
     | 
| 
      
 7234 
     | 
    
         
            +
                  end
         
     | 
| 
      
 7235 
     | 
    
         
            +
                  
         
     | 
| 
       7168 
7236 
     | 
    
         
             
                  class GoogleCloudDialogflowV2beta1EntityType
         
     | 
| 
       7169 
7237 
     | 
    
         
             
                    # @private
         
     | 
| 
       7170 
7238 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -7248,6 +7316,22 @@ module Google 
     | 
|
| 
       7248 
7316 
     | 
    
         
             
                    end
         
     | 
| 
       7249 
7317 
     | 
    
         
             
                  end
         
     | 
| 
       7250 
7318 
     | 
    
         | 
| 
      
 7319 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
         
     | 
| 
      
 7320 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 7321 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 7322 
     | 
    
         
            +
                      property :request, as: 'request', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest::Representation
         
     | 
| 
      
 7323 
     | 
    
         
            +
                  
         
     | 
| 
      
 7324 
     | 
    
         
            +
                    end
         
     | 
| 
      
 7325 
     | 
    
         
            +
                  end
         
     | 
| 
      
 7326 
     | 
    
         
            +
                  
         
     | 
| 
      
 7327 
     | 
    
         
            +
                  class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
         
     | 
| 
      
 7328 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 7329 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 7330 
     | 
    
         
            +
                      property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1EncryptionSpec, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1EncryptionSpec::Representation
         
     | 
| 
      
 7331 
     | 
    
         
            +
                  
         
     | 
| 
      
 7332 
     | 
    
         
            +
                    end
         
     | 
| 
      
 7333 
     | 
    
         
            +
                  end
         
     | 
| 
      
 7334 
     | 
    
         
            +
                  
         
     | 
| 
       7251 
7335 
     | 
    
         
             
                  class GoogleCloudDialogflowV2beta1Intent
         
     | 
| 
       7252 
7336 
     | 
    
         
             
                    # @private
         
     | 
| 
       7253 
7337 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: google-apis-dialogflow_v2
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.71.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: 2023- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2023-10-29 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-dialogflow_v2/CHANGELOG.md
         
     | 
| 
       61 
     | 
    
         
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0. 
     | 
| 
      
 61 
     | 
    
         
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.71.0
         
     | 
| 
       62 
62 
     | 
    
         
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
         
     | 
| 
       63 
63 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       64 
64 
     | 
    
         
             
            rdoc_options: []
         
     |