Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/hermetic_library_generation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
with:
fetch-depth: 0
token: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }}
- uses: googleapis/sdk-platform-java/.github/[email protected].1
- uses: googleapis/sdk-platform-java/.github/[email protected].2
if: env.SHOULD_RUN == 'true'
with:
base_ref: ${{ github.base_ref }}
Expand Down
4 changes: 2 additions & 2 deletions generation_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
gapic_generator_version: 2.64.1
googleapis_commitish: c9578f6385fe0fb9067c5dba8d7cdda39efac0ff
gapic_generator_version: 2.64.2
googleapis_commitish: 05f65958eb7f2a8bc59db87ad40487f0fb093097
libraries_bom_version: 26.72.0

# the libraries are ordered with respect to library name, which is
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,46 @@ public UnaryCallSettings<GetAdUnitRequest, AdUnit> getAdUnitSettings() {
return ((AdUnitServiceStubSettings) getStubSettings()).listAdUnitSizesSettings();
}

/** Returns the object with the settings used for calls to createAdUnit. */
public UnaryCallSettings<CreateAdUnitRequest, AdUnit> createAdUnitSettings() {
return ((AdUnitServiceStubSettings) getStubSettings()).createAdUnitSettings();
}

/** Returns the object with the settings used for calls to updateAdUnit. */
public UnaryCallSettings<UpdateAdUnitRequest, AdUnit> updateAdUnitSettings() {
return ((AdUnitServiceStubSettings) getStubSettings()).updateAdUnitSettings();
}

/** Returns the object with the settings used for calls to batchCreateAdUnits. */
public UnaryCallSettings<BatchCreateAdUnitsRequest, BatchCreateAdUnitsResponse>
batchCreateAdUnitsSettings() {
return ((AdUnitServiceStubSettings) getStubSettings()).batchCreateAdUnitsSettings();
}

/** Returns the object with the settings used for calls to batchUpdateAdUnits. */
public UnaryCallSettings<BatchUpdateAdUnitsRequest, BatchUpdateAdUnitsResponse>
batchUpdateAdUnitsSettings() {
return ((AdUnitServiceStubSettings) getStubSettings()).batchUpdateAdUnitsSettings();
}

/** Returns the object with the settings used for calls to batchActivateAdUnits. */
public UnaryCallSettings<BatchActivateAdUnitsRequest, BatchActivateAdUnitsResponse>
batchActivateAdUnitsSettings() {
return ((AdUnitServiceStubSettings) getStubSettings()).batchActivateAdUnitsSettings();
}

/** Returns the object with the settings used for calls to batchDeactivateAdUnits. */
public UnaryCallSettings<BatchDeactivateAdUnitsRequest, BatchDeactivateAdUnitsResponse>
batchDeactivateAdUnitsSettings() {
return ((AdUnitServiceStubSettings) getStubSettings()).batchDeactivateAdUnitsSettings();
}

/** Returns the object with the settings used for calls to batchArchiveAdUnits. */
public UnaryCallSettings<BatchArchiveAdUnitsRequest, BatchArchiveAdUnitsResponse>
batchArchiveAdUnitsSettings() {
return ((AdUnitServiceStubSettings) getStubSettings()).batchArchiveAdUnitsSettings();
}

public static final AdUnitServiceSettings create(AdUnitServiceStubSettings stub)
throws IOException {
return new AdUnitServiceSettings.Builder(stub.toBuilder()).build();
Expand Down Expand Up @@ -220,6 +260,46 @@ public UnaryCallSettings.Builder<GetAdUnitRequest, AdUnit> getAdUnitSettings() {
return getStubSettingsBuilder().listAdUnitSizesSettings();
}

/** Returns the builder for the settings used for calls to createAdUnit. */
public UnaryCallSettings.Builder<CreateAdUnitRequest, AdUnit> createAdUnitSettings() {
return getStubSettingsBuilder().createAdUnitSettings();
}

/** Returns the builder for the settings used for calls to updateAdUnit. */
public UnaryCallSettings.Builder<UpdateAdUnitRequest, AdUnit> updateAdUnitSettings() {
return getStubSettingsBuilder().updateAdUnitSettings();
}

/** Returns the builder for the settings used for calls to batchCreateAdUnits. */
public UnaryCallSettings.Builder<BatchCreateAdUnitsRequest, BatchCreateAdUnitsResponse>
batchCreateAdUnitsSettings() {
return getStubSettingsBuilder().batchCreateAdUnitsSettings();
}

/** Returns the builder for the settings used for calls to batchUpdateAdUnits. */
public UnaryCallSettings.Builder<BatchUpdateAdUnitsRequest, BatchUpdateAdUnitsResponse>
batchUpdateAdUnitsSettings() {
return getStubSettingsBuilder().batchUpdateAdUnitsSettings();
}

/** Returns the builder for the settings used for calls to batchActivateAdUnits. */
public UnaryCallSettings.Builder<BatchActivateAdUnitsRequest, BatchActivateAdUnitsResponse>
batchActivateAdUnitsSettings() {
return getStubSettingsBuilder().batchActivateAdUnitsSettings();
}

/** Returns the builder for the settings used for calls to batchDeactivateAdUnits. */
public UnaryCallSettings.Builder<BatchDeactivateAdUnitsRequest, BatchDeactivateAdUnitsResponse>
batchDeactivateAdUnitsSettings() {
return getStubSettingsBuilder().batchDeactivateAdUnitsSettings();
}

/** Returns the builder for the settings used for calls to batchArchiveAdUnits. */
public UnaryCallSettings.Builder<BatchArchiveAdUnitsRequest, BatchArchiveAdUnitsResponse>
batchArchiveAdUnitsSettings() {
return getStubSettingsBuilder().batchArchiveAdUnitsSettings();
}

@Override
public AdUnitServiceSettings build() throws IOException {
return new AdUnitServiceSettings(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
* </tr>
* <tr>
* <td><p> GetCmsMetadataValue</td>
* <td><p> API to retrieve a `CmsMetadataKey` object.</td>
* <td><p> API to retrieve a `CmsMetadataValue` object.</td>
* <td>
* <p>Request object method variants only take one parameter, a request object, which must be constructed before the call.</p>
* <ul>
Expand Down Expand Up @@ -198,7 +198,7 @@ public CmsMetadataValueServiceStub getStub() {

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* API to retrieve a `CmsMetadataKey` object.
* API to retrieve a `CmsMetadataValue` object.
*
* <p>Sample code:
*
Expand All @@ -215,7 +215,7 @@ public CmsMetadataValueServiceStub getStub() {
* }
* }</pre>
*
* @param name Required. The resource name of the CmsMetadataKey. Format:
* @param name Required. The resource name of the CmsMetadataValue. Format:
* `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}`
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
Expand All @@ -229,7 +229,7 @@ public final CmsMetadataValue getCmsMetadataValue(CmsMetadataValueName name) {

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* API to retrieve a `CmsMetadataKey` object.
* API to retrieve a `CmsMetadataValue` object.
*
* <p>Sample code:
*
Expand All @@ -246,7 +246,7 @@ public final CmsMetadataValue getCmsMetadataValue(CmsMetadataValueName name) {
* }
* }</pre>
*
* @param name Required. The resource name of the CmsMetadataKey. Format:
* @param name Required. The resource name of the CmsMetadataValue. Format:
* `networks/{network_code}/cmsMetadataValues/{cms_metadata_value_id}`
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
Expand All @@ -258,7 +258,7 @@ public final CmsMetadataValue getCmsMetadataValue(String name) {

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* API to retrieve a `CmsMetadataKey` object.
* API to retrieve a `CmsMetadataValue` object.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -287,7 +287,7 @@ public final CmsMetadataValue getCmsMetadataValue(GetCmsMetadataValueRequest req

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* API to retrieve a `CmsMetadataKey` object.
* API to retrieve a `CmsMetadataValue` object.
*
* <p>Sample code:
*
Expand Down
Loading
Loading