Class: Google::Apis::ServicenetworkingV1beta::JavaSettings

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/servicenetworking_v1beta/classes.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb
more...

Overview

Settings for Java client libraries.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ JavaSettings

Returns a new instance of JavaSettings.

[View source]

2137
2138
2139
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 2137

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#commonGoogle::Apis::ServicenetworkingV1beta::CommonLanguageSettings

Required information for every language. Corresponds to the JSON property common


2114
2115
2116
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 2114

def common
  @common
end

#library_packageString

The package name to use in Java. Clobbers the java_package option set in the protobuf. This should be used only by APIs who have already set the language_settings.java.package_name" field in gapic.yaml. API teams should use the protobuf java_package option where possible. Example of a YAML configuration:: publishing: java_settings: library_package: com.google.cloud. pubsub.v1 Corresponds to the JSON property libraryPackage

Returns:

  • (String)

2124
2125
2126
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 2124

def library_package
  @library_package
end

#service_class_namesHash<String,String>

Configure the Java class name to use instead of the service's for its corresponding generated GAPIC client. Keys are fully-qualified service names as they appear in the protobuf (including the full the language_settings.java. interface_names" field in gapic.yaml. API teams should otherwise use the service name as it appears in the protobuf. Example of a YAML configuration:: publishing: java_settings: service_class_names: - google.pubsub.v1.Publisher: TopicAdmin - google.pubsub.v1.Subscriber: SubscriptionAdmin Corresponds to the JSON property serviceClassNames

Returns:

  • (Hash<String,String>)

2135
2136
2137
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 2135

def service_class_names
  @service_class_names
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

2142
2143
2144
2145
2146
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 2142

def update!(**args)
  @common = args[:common] if args.key?(:common)
  @library_package = args[:library_package] if args.key?(:library_package)
  @service_class_names = args[:service_class_names] if args.key?(:service_class_names)
end