generated/google/apis/serviceusage_v1/classes.rb in google-api-client-0.27.2 vs generated/google/apis/serviceusage_v1/classes.rb in google-api-client-0.27.3

- old
+ new

@@ -373,10 +373,15 @@ # deadline for gRPC is infinite (no deadline) and HTTP requests is 5 seconds. # Corresponds to the JSON property `deadline` # @return [Float] attr_accessor :deadline + # The JWT audience is used when generating a JWT id token for the backend. + # Corresponds to the JSON property `jwtAudience` + # @return [String] + attr_accessor :jwt_audience + # Minimum deadline in seconds needed for this method. Calls having deadline # value lower than this will be rejected. # Corresponds to the JSON property `minDeadline` # @return [Float] attr_accessor :min_deadline @@ -385,10 +390,15 @@ # operation. The default is no deadline. # Corresponds to the JSON property `operationDeadline` # @return [Float] attr_accessor :operation_deadline + # + # Corresponds to the JSON property `pathTranslation` + # @return [String] + attr_accessor :path_translation + # Selects the methods to which this rule applies. # Refer to selector for syntax details. # Corresponds to the JSON property `selector` # @return [String] attr_accessor :selector @@ -399,11 +409,13 @@ # Update properties of this object def update!(**args) @address = args[:address] if args.key?(:address) @deadline = args[:deadline] if args.key?(:deadline) + @jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience) @min_deadline = args[:min_deadline] if args.key?(:min_deadline) @operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline) + @path_translation = args[:path_translation] if args.key?(:path_translation) @selector = args[:selector] if args.key?(:selector) end end # Request message for the `BatchEnableServices` method.