sigs.k8s.io/cluster-api-provider-azure@v1.14.3/azure/services/scalesets/mock_scalesets/scalesets_mock.go (about)

     1  /*
     2  Copyright The Kubernetes Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  // Code generated by MockGen. DO NOT EDIT.
    18  // Source: ../scalesets.go
    19  //
    20  // Generated by this command:
    21  //
    22  //	mockgen -destination scalesets_mock.go -package mock_scalesets -source ../scalesets.go ScaleSetScope
    23  //
    24  
    25  // Package mock_scalesets is a generated GoMock package.
    26  package mock_scalesets
    27  
    28  import (
    29  	context "context"
    30  	reflect "reflect"
    31  	time "time"
    32  
    33  	azcore "github.com/Azure/azure-sdk-for-go/sdk/azcore"
    34  	gomock "go.uber.org/mock/gomock"
    35  	v1beta1 "sigs.k8s.io/cluster-api-provider-azure/api/v1beta1"
    36  	azure "sigs.k8s.io/cluster-api-provider-azure/azure"
    37  	v1beta10 "sigs.k8s.io/cluster-api/api/v1beta1"
    38  )
    39  
    40  // MockScaleSetScope is a mock of ScaleSetScope interface.
    41  type MockScaleSetScope struct {
    42  	ctrl     *gomock.Controller
    43  	recorder *MockScaleSetScopeMockRecorder
    44  }
    45  
    46  // MockScaleSetScopeMockRecorder is the mock recorder for MockScaleSetScope.
    47  type MockScaleSetScopeMockRecorder struct {
    48  	mock *MockScaleSetScope
    49  }
    50  
    51  // NewMockScaleSetScope creates a new mock instance.
    52  func NewMockScaleSetScope(ctrl *gomock.Controller) *MockScaleSetScope {
    53  	mock := &MockScaleSetScope{ctrl: ctrl}
    54  	mock.recorder = &MockScaleSetScopeMockRecorder{mock}
    55  	return mock
    56  }
    57  
    58  // EXPECT returns an object that allows the caller to indicate expected use.
    59  func (m *MockScaleSetScope) EXPECT() *MockScaleSetScopeMockRecorder {
    60  	return m.recorder
    61  }
    62  
    63  // AdditionalTags mocks base method.
    64  func (m *MockScaleSetScope) AdditionalTags() v1beta1.Tags {
    65  	m.ctrl.T.Helper()
    66  	ret := m.ctrl.Call(m, "AdditionalTags")
    67  	ret0, _ := ret[0].(v1beta1.Tags)
    68  	return ret0
    69  }
    70  
    71  // AdditionalTags indicates an expected call of AdditionalTags.
    72  func (mr *MockScaleSetScopeMockRecorder) AdditionalTags() *gomock.Call {
    73  	mr.mock.ctrl.T.Helper()
    74  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AdditionalTags", reflect.TypeOf((*MockScaleSetScope)(nil).AdditionalTags))
    75  }
    76  
    77  // AvailabilitySetEnabled mocks base method.
    78  func (m *MockScaleSetScope) AvailabilitySetEnabled() bool {
    79  	m.ctrl.T.Helper()
    80  	ret := m.ctrl.Call(m, "AvailabilitySetEnabled")
    81  	ret0, _ := ret[0].(bool)
    82  	return ret0
    83  }
    84  
    85  // AvailabilitySetEnabled indicates an expected call of AvailabilitySetEnabled.
    86  func (mr *MockScaleSetScopeMockRecorder) AvailabilitySetEnabled() *gomock.Call {
    87  	mr.mock.ctrl.T.Helper()
    88  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AvailabilitySetEnabled", reflect.TypeOf((*MockScaleSetScope)(nil).AvailabilitySetEnabled))
    89  }
    90  
    91  // BaseURI mocks base method.
    92  func (m *MockScaleSetScope) BaseURI() string {
    93  	m.ctrl.T.Helper()
    94  	ret := m.ctrl.Call(m, "BaseURI")
    95  	ret0, _ := ret[0].(string)
    96  	return ret0
    97  }
    98  
    99  // BaseURI indicates an expected call of BaseURI.
   100  func (mr *MockScaleSetScopeMockRecorder) BaseURI() *gomock.Call {
   101  	mr.mock.ctrl.T.Helper()
   102  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "BaseURI", reflect.TypeOf((*MockScaleSetScope)(nil).BaseURI))
   103  }
   104  
   105  // ClientID mocks base method.
   106  func (m *MockScaleSetScope) ClientID() string {
   107  	m.ctrl.T.Helper()
   108  	ret := m.ctrl.Call(m, "ClientID")
   109  	ret0, _ := ret[0].(string)
   110  	return ret0
   111  }
   112  
   113  // ClientID indicates an expected call of ClientID.
   114  func (mr *MockScaleSetScopeMockRecorder) ClientID() *gomock.Call {
   115  	mr.mock.ctrl.T.Helper()
   116  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ClientID", reflect.TypeOf((*MockScaleSetScope)(nil).ClientID))
   117  }
   118  
   119  // ClientSecret mocks base method.
   120  func (m *MockScaleSetScope) ClientSecret() string {
   121  	m.ctrl.T.Helper()
   122  	ret := m.ctrl.Call(m, "ClientSecret")
   123  	ret0, _ := ret[0].(string)
   124  	return ret0
   125  }
   126  
   127  // ClientSecret indicates an expected call of ClientSecret.
   128  func (mr *MockScaleSetScopeMockRecorder) ClientSecret() *gomock.Call {
   129  	mr.mock.ctrl.T.Helper()
   130  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ClientSecret", reflect.TypeOf((*MockScaleSetScope)(nil).ClientSecret))
   131  }
   132  
   133  // CloudEnvironment mocks base method.
   134  func (m *MockScaleSetScope) CloudEnvironment() string {
   135  	m.ctrl.T.Helper()
   136  	ret := m.ctrl.Call(m, "CloudEnvironment")
   137  	ret0, _ := ret[0].(string)
   138  	return ret0
   139  }
   140  
   141  // CloudEnvironment indicates an expected call of CloudEnvironment.
   142  func (mr *MockScaleSetScopeMockRecorder) CloudEnvironment() *gomock.Call {
   143  	mr.mock.ctrl.T.Helper()
   144  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CloudEnvironment", reflect.TypeOf((*MockScaleSetScope)(nil).CloudEnvironment))
   145  }
   146  
   147  // CloudProviderConfigOverrides mocks base method.
   148  func (m *MockScaleSetScope) CloudProviderConfigOverrides() *v1beta1.CloudProviderConfigOverrides {
   149  	m.ctrl.T.Helper()
   150  	ret := m.ctrl.Call(m, "CloudProviderConfigOverrides")
   151  	ret0, _ := ret[0].(*v1beta1.CloudProviderConfigOverrides)
   152  	return ret0
   153  }
   154  
   155  // CloudProviderConfigOverrides indicates an expected call of CloudProviderConfigOverrides.
   156  func (mr *MockScaleSetScopeMockRecorder) CloudProviderConfigOverrides() *gomock.Call {
   157  	mr.mock.ctrl.T.Helper()
   158  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CloudProviderConfigOverrides", reflect.TypeOf((*MockScaleSetScope)(nil).CloudProviderConfigOverrides))
   159  }
   160  
   161  // ClusterName mocks base method.
   162  func (m *MockScaleSetScope) ClusterName() string {
   163  	m.ctrl.T.Helper()
   164  	ret := m.ctrl.Call(m, "ClusterName")
   165  	ret0, _ := ret[0].(string)
   166  	return ret0
   167  }
   168  
   169  // ClusterName indicates an expected call of ClusterName.
   170  func (mr *MockScaleSetScopeMockRecorder) ClusterName() *gomock.Call {
   171  	mr.mock.ctrl.T.Helper()
   172  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ClusterName", reflect.TypeOf((*MockScaleSetScope)(nil).ClusterName))
   173  }
   174  
   175  // DefaultedAzureCallTimeout mocks base method.
   176  func (m *MockScaleSetScope) DefaultedAzureCallTimeout() time.Duration {
   177  	m.ctrl.T.Helper()
   178  	ret := m.ctrl.Call(m, "DefaultedAzureCallTimeout")
   179  	ret0, _ := ret[0].(time.Duration)
   180  	return ret0
   181  }
   182  
   183  // DefaultedAzureCallTimeout indicates an expected call of DefaultedAzureCallTimeout.
   184  func (mr *MockScaleSetScopeMockRecorder) DefaultedAzureCallTimeout() *gomock.Call {
   185  	mr.mock.ctrl.T.Helper()
   186  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DefaultedAzureCallTimeout", reflect.TypeOf((*MockScaleSetScope)(nil).DefaultedAzureCallTimeout))
   187  }
   188  
   189  // DefaultedAzureServiceReconcileTimeout mocks base method.
   190  func (m *MockScaleSetScope) DefaultedAzureServiceReconcileTimeout() time.Duration {
   191  	m.ctrl.T.Helper()
   192  	ret := m.ctrl.Call(m, "DefaultedAzureServiceReconcileTimeout")
   193  	ret0, _ := ret[0].(time.Duration)
   194  	return ret0
   195  }
   196  
   197  // DefaultedAzureServiceReconcileTimeout indicates an expected call of DefaultedAzureServiceReconcileTimeout.
   198  func (mr *MockScaleSetScopeMockRecorder) DefaultedAzureServiceReconcileTimeout() *gomock.Call {
   199  	mr.mock.ctrl.T.Helper()
   200  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DefaultedAzureServiceReconcileTimeout", reflect.TypeOf((*MockScaleSetScope)(nil).DefaultedAzureServiceReconcileTimeout))
   201  }
   202  
   203  // DefaultedReconcilerRequeue mocks base method.
   204  func (m *MockScaleSetScope) DefaultedReconcilerRequeue() time.Duration {
   205  	m.ctrl.T.Helper()
   206  	ret := m.ctrl.Call(m, "DefaultedReconcilerRequeue")
   207  	ret0, _ := ret[0].(time.Duration)
   208  	return ret0
   209  }
   210  
   211  // DefaultedReconcilerRequeue indicates an expected call of DefaultedReconcilerRequeue.
   212  func (mr *MockScaleSetScopeMockRecorder) DefaultedReconcilerRequeue() *gomock.Call {
   213  	mr.mock.ctrl.T.Helper()
   214  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DefaultedReconcilerRequeue", reflect.TypeOf((*MockScaleSetScope)(nil).DefaultedReconcilerRequeue))
   215  }
   216  
   217  // DeleteLongRunningOperationState mocks base method.
   218  func (m *MockScaleSetScope) DeleteLongRunningOperationState(arg0, arg1, arg2 string) {
   219  	m.ctrl.T.Helper()
   220  	m.ctrl.Call(m, "DeleteLongRunningOperationState", arg0, arg1, arg2)
   221  }
   222  
   223  // DeleteLongRunningOperationState indicates an expected call of DeleteLongRunningOperationState.
   224  func (mr *MockScaleSetScopeMockRecorder) DeleteLongRunningOperationState(arg0, arg1, arg2 any) *gomock.Call {
   225  	mr.mock.ctrl.T.Helper()
   226  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteLongRunningOperationState", reflect.TypeOf((*MockScaleSetScope)(nil).DeleteLongRunningOperationState), arg0, arg1, arg2)
   227  }
   228  
   229  // ExtendedLocation mocks base method.
   230  func (m *MockScaleSetScope) ExtendedLocation() *v1beta1.ExtendedLocationSpec {
   231  	m.ctrl.T.Helper()
   232  	ret := m.ctrl.Call(m, "ExtendedLocation")
   233  	ret0, _ := ret[0].(*v1beta1.ExtendedLocationSpec)
   234  	return ret0
   235  }
   236  
   237  // ExtendedLocation indicates an expected call of ExtendedLocation.
   238  func (mr *MockScaleSetScopeMockRecorder) ExtendedLocation() *gomock.Call {
   239  	mr.mock.ctrl.T.Helper()
   240  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ExtendedLocation", reflect.TypeOf((*MockScaleSetScope)(nil).ExtendedLocation))
   241  }
   242  
   243  // ExtendedLocationName mocks base method.
   244  func (m *MockScaleSetScope) ExtendedLocationName() string {
   245  	m.ctrl.T.Helper()
   246  	ret := m.ctrl.Call(m, "ExtendedLocationName")
   247  	ret0, _ := ret[0].(string)
   248  	return ret0
   249  }
   250  
   251  // ExtendedLocationName indicates an expected call of ExtendedLocationName.
   252  func (mr *MockScaleSetScopeMockRecorder) ExtendedLocationName() *gomock.Call {
   253  	mr.mock.ctrl.T.Helper()
   254  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ExtendedLocationName", reflect.TypeOf((*MockScaleSetScope)(nil).ExtendedLocationName))
   255  }
   256  
   257  // ExtendedLocationType mocks base method.
   258  func (m *MockScaleSetScope) ExtendedLocationType() string {
   259  	m.ctrl.T.Helper()
   260  	ret := m.ctrl.Call(m, "ExtendedLocationType")
   261  	ret0, _ := ret[0].(string)
   262  	return ret0
   263  }
   264  
   265  // ExtendedLocationType indicates an expected call of ExtendedLocationType.
   266  func (mr *MockScaleSetScopeMockRecorder) ExtendedLocationType() *gomock.Call {
   267  	mr.mock.ctrl.T.Helper()
   268  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ExtendedLocationType", reflect.TypeOf((*MockScaleSetScope)(nil).ExtendedLocationType))
   269  }
   270  
   271  // FailureDomains mocks base method.
   272  func (m *MockScaleSetScope) FailureDomains() []*string {
   273  	m.ctrl.T.Helper()
   274  	ret := m.ctrl.Call(m, "FailureDomains")
   275  	ret0, _ := ret[0].([]*string)
   276  	return ret0
   277  }
   278  
   279  // FailureDomains indicates an expected call of FailureDomains.
   280  func (mr *MockScaleSetScopeMockRecorder) FailureDomains() *gomock.Call {
   281  	mr.mock.ctrl.T.Helper()
   282  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "FailureDomains", reflect.TypeOf((*MockScaleSetScope)(nil).FailureDomains))
   283  }
   284  
   285  // GetLongRunningOperationState mocks base method.
   286  func (m *MockScaleSetScope) GetLongRunningOperationState(arg0, arg1, arg2 string) *v1beta1.Future {
   287  	m.ctrl.T.Helper()
   288  	ret := m.ctrl.Call(m, "GetLongRunningOperationState", arg0, arg1, arg2)
   289  	ret0, _ := ret[0].(*v1beta1.Future)
   290  	return ret0
   291  }
   292  
   293  // GetLongRunningOperationState indicates an expected call of GetLongRunningOperationState.
   294  func (mr *MockScaleSetScopeMockRecorder) GetLongRunningOperationState(arg0, arg1, arg2 any) *gomock.Call {
   295  	mr.mock.ctrl.T.Helper()
   296  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetLongRunningOperationState", reflect.TypeOf((*MockScaleSetScope)(nil).GetLongRunningOperationState), arg0, arg1, arg2)
   297  }
   298  
   299  // HashKey mocks base method.
   300  func (m *MockScaleSetScope) HashKey() string {
   301  	m.ctrl.T.Helper()
   302  	ret := m.ctrl.Call(m, "HashKey")
   303  	ret0, _ := ret[0].(string)
   304  	return ret0
   305  }
   306  
   307  // HashKey indicates an expected call of HashKey.
   308  func (mr *MockScaleSetScopeMockRecorder) HashKey() *gomock.Call {
   309  	mr.mock.ctrl.T.Helper()
   310  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "HashKey", reflect.TypeOf((*MockScaleSetScope)(nil).HashKey))
   311  }
   312  
   313  // Location mocks base method.
   314  func (m *MockScaleSetScope) Location() string {
   315  	m.ctrl.T.Helper()
   316  	ret := m.ctrl.Call(m, "Location")
   317  	ret0, _ := ret[0].(string)
   318  	return ret0
   319  }
   320  
   321  // Location indicates an expected call of Location.
   322  func (mr *MockScaleSetScopeMockRecorder) Location() *gomock.Call {
   323  	mr.mock.ctrl.T.Helper()
   324  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Location", reflect.TypeOf((*MockScaleSetScope)(nil).Location))
   325  }
   326  
   327  // NodeResourceGroup mocks base method.
   328  func (m *MockScaleSetScope) NodeResourceGroup() string {
   329  	m.ctrl.T.Helper()
   330  	ret := m.ctrl.Call(m, "NodeResourceGroup")
   331  	ret0, _ := ret[0].(string)
   332  	return ret0
   333  }
   334  
   335  // NodeResourceGroup indicates an expected call of NodeResourceGroup.
   336  func (mr *MockScaleSetScopeMockRecorder) NodeResourceGroup() *gomock.Call {
   337  	mr.mock.ctrl.T.Helper()
   338  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "NodeResourceGroup", reflect.TypeOf((*MockScaleSetScope)(nil).NodeResourceGroup))
   339  }
   340  
   341  // ReconcileReplicas mocks base method.
   342  func (m *MockScaleSetScope) ReconcileReplicas(arg0 context.Context, arg1 *azure.VMSS) error {
   343  	m.ctrl.T.Helper()
   344  	ret := m.ctrl.Call(m, "ReconcileReplicas", arg0, arg1)
   345  	ret0, _ := ret[0].(error)
   346  	return ret0
   347  }
   348  
   349  // ReconcileReplicas indicates an expected call of ReconcileReplicas.
   350  func (mr *MockScaleSetScopeMockRecorder) ReconcileReplicas(arg0, arg1 any) *gomock.Call {
   351  	mr.mock.ctrl.T.Helper()
   352  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReconcileReplicas", reflect.TypeOf((*MockScaleSetScope)(nil).ReconcileReplicas), arg0, arg1)
   353  }
   354  
   355  // ResourceGroup mocks base method.
   356  func (m *MockScaleSetScope) ResourceGroup() string {
   357  	m.ctrl.T.Helper()
   358  	ret := m.ctrl.Call(m, "ResourceGroup")
   359  	ret0, _ := ret[0].(string)
   360  	return ret0
   361  }
   362  
   363  // ResourceGroup indicates an expected call of ResourceGroup.
   364  func (mr *MockScaleSetScopeMockRecorder) ResourceGroup() *gomock.Call {
   365  	mr.mock.ctrl.T.Helper()
   366  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ResourceGroup", reflect.TypeOf((*MockScaleSetScope)(nil).ResourceGroup))
   367  }
   368  
   369  // ScaleSetSpec mocks base method.
   370  func (m *MockScaleSetScope) ScaleSetSpec(arg0 context.Context) azure.ResourceSpecGetter {
   371  	m.ctrl.T.Helper()
   372  	ret := m.ctrl.Call(m, "ScaleSetSpec", arg0)
   373  	ret0, _ := ret[0].(azure.ResourceSpecGetter)
   374  	return ret0
   375  }
   376  
   377  // ScaleSetSpec indicates an expected call of ScaleSetSpec.
   378  func (mr *MockScaleSetScopeMockRecorder) ScaleSetSpec(arg0 any) *gomock.Call {
   379  	mr.mock.ctrl.T.Helper()
   380  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ScaleSetSpec", reflect.TypeOf((*MockScaleSetScope)(nil).ScaleSetSpec), arg0)
   381  }
   382  
   383  // SetAnnotation mocks base method.
   384  func (m *MockScaleSetScope) SetAnnotation(arg0, arg1 string) {
   385  	m.ctrl.T.Helper()
   386  	m.ctrl.Call(m, "SetAnnotation", arg0, arg1)
   387  }
   388  
   389  // SetAnnotation indicates an expected call of SetAnnotation.
   390  func (mr *MockScaleSetScopeMockRecorder) SetAnnotation(arg0, arg1 any) *gomock.Call {
   391  	mr.mock.ctrl.T.Helper()
   392  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetAnnotation", reflect.TypeOf((*MockScaleSetScope)(nil).SetAnnotation), arg0, arg1)
   393  }
   394  
   395  // SetLongRunningOperationState mocks base method.
   396  func (m *MockScaleSetScope) SetLongRunningOperationState(arg0 *v1beta1.Future) {
   397  	m.ctrl.T.Helper()
   398  	m.ctrl.Call(m, "SetLongRunningOperationState", arg0)
   399  }
   400  
   401  // SetLongRunningOperationState indicates an expected call of SetLongRunningOperationState.
   402  func (mr *MockScaleSetScopeMockRecorder) SetLongRunningOperationState(arg0 any) *gomock.Call {
   403  	mr.mock.ctrl.T.Helper()
   404  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetLongRunningOperationState", reflect.TypeOf((*MockScaleSetScope)(nil).SetLongRunningOperationState), arg0)
   405  }
   406  
   407  // SetProviderID mocks base method.
   408  func (m *MockScaleSetScope) SetProviderID(arg0 string) {
   409  	m.ctrl.T.Helper()
   410  	m.ctrl.Call(m, "SetProviderID", arg0)
   411  }
   412  
   413  // SetProviderID indicates an expected call of SetProviderID.
   414  func (mr *MockScaleSetScopeMockRecorder) SetProviderID(arg0 any) *gomock.Call {
   415  	mr.mock.ctrl.T.Helper()
   416  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetProviderID", reflect.TypeOf((*MockScaleSetScope)(nil).SetProviderID), arg0)
   417  }
   418  
   419  // SetVMSSState mocks base method.
   420  func (m *MockScaleSetScope) SetVMSSState(arg0 *azure.VMSS) {
   421  	m.ctrl.T.Helper()
   422  	m.ctrl.Call(m, "SetVMSSState", arg0)
   423  }
   424  
   425  // SetVMSSState indicates an expected call of SetVMSSState.
   426  func (mr *MockScaleSetScopeMockRecorder) SetVMSSState(arg0 any) *gomock.Call {
   427  	mr.mock.ctrl.T.Helper()
   428  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetVMSSState", reflect.TypeOf((*MockScaleSetScope)(nil).SetVMSSState), arg0)
   429  }
   430  
   431  // SubscriptionID mocks base method.
   432  func (m *MockScaleSetScope) SubscriptionID() string {
   433  	m.ctrl.T.Helper()
   434  	ret := m.ctrl.Call(m, "SubscriptionID")
   435  	ret0, _ := ret[0].(string)
   436  	return ret0
   437  }
   438  
   439  // SubscriptionID indicates an expected call of SubscriptionID.
   440  func (mr *MockScaleSetScopeMockRecorder) SubscriptionID() *gomock.Call {
   441  	mr.mock.ctrl.T.Helper()
   442  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SubscriptionID", reflect.TypeOf((*MockScaleSetScope)(nil).SubscriptionID))
   443  }
   444  
   445  // TenantID mocks base method.
   446  func (m *MockScaleSetScope) TenantID() string {
   447  	m.ctrl.T.Helper()
   448  	ret := m.ctrl.Call(m, "TenantID")
   449  	ret0, _ := ret[0].(string)
   450  	return ret0
   451  }
   452  
   453  // TenantID indicates an expected call of TenantID.
   454  func (mr *MockScaleSetScopeMockRecorder) TenantID() *gomock.Call {
   455  	mr.mock.ctrl.T.Helper()
   456  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "TenantID", reflect.TypeOf((*MockScaleSetScope)(nil).TenantID))
   457  }
   458  
   459  // Token mocks base method.
   460  func (m *MockScaleSetScope) Token() azcore.TokenCredential {
   461  	m.ctrl.T.Helper()
   462  	ret := m.ctrl.Call(m, "Token")
   463  	ret0, _ := ret[0].(azcore.TokenCredential)
   464  	return ret0
   465  }
   466  
   467  // Token indicates an expected call of Token.
   468  func (mr *MockScaleSetScopeMockRecorder) Token() *gomock.Call {
   469  	mr.mock.ctrl.T.Helper()
   470  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Token", reflect.TypeOf((*MockScaleSetScope)(nil).Token))
   471  }
   472  
   473  // UpdateDeleteStatus mocks base method.
   474  func (m *MockScaleSetScope) UpdateDeleteStatus(arg0 v1beta10.ConditionType, arg1 string, arg2 error) {
   475  	m.ctrl.T.Helper()
   476  	m.ctrl.Call(m, "UpdateDeleteStatus", arg0, arg1, arg2)
   477  }
   478  
   479  // UpdateDeleteStatus indicates an expected call of UpdateDeleteStatus.
   480  func (mr *MockScaleSetScopeMockRecorder) UpdateDeleteStatus(arg0, arg1, arg2 any) *gomock.Call {
   481  	mr.mock.ctrl.T.Helper()
   482  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateDeleteStatus", reflect.TypeOf((*MockScaleSetScope)(nil).UpdateDeleteStatus), arg0, arg1, arg2)
   483  }
   484  
   485  // UpdatePatchStatus mocks base method.
   486  func (m *MockScaleSetScope) UpdatePatchStatus(arg0 v1beta10.ConditionType, arg1 string, arg2 error) {
   487  	m.ctrl.T.Helper()
   488  	m.ctrl.Call(m, "UpdatePatchStatus", arg0, arg1, arg2)
   489  }
   490  
   491  // UpdatePatchStatus indicates an expected call of UpdatePatchStatus.
   492  func (mr *MockScaleSetScopeMockRecorder) UpdatePatchStatus(arg0, arg1, arg2 any) *gomock.Call {
   493  	mr.mock.ctrl.T.Helper()
   494  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdatePatchStatus", reflect.TypeOf((*MockScaleSetScope)(nil).UpdatePatchStatus), arg0, arg1, arg2)
   495  }
   496  
   497  // UpdatePutStatus mocks base method.
   498  func (m *MockScaleSetScope) UpdatePutStatus(arg0 v1beta10.ConditionType, arg1 string, arg2 error) {
   499  	m.ctrl.T.Helper()
   500  	m.ctrl.Call(m, "UpdatePutStatus", arg0, arg1, arg2)
   501  }
   502  
   503  // UpdatePutStatus indicates an expected call of UpdatePutStatus.
   504  func (mr *MockScaleSetScopeMockRecorder) UpdatePutStatus(arg0, arg1, arg2 any) *gomock.Call {
   505  	mr.mock.ctrl.T.Helper()
   506  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdatePutStatus", reflect.TypeOf((*MockScaleSetScope)(nil).UpdatePutStatus), arg0, arg1, arg2)
   507  }
   508  
   509  // VMSSExtensionSpecs mocks base method.
   510  func (m *MockScaleSetScope) VMSSExtensionSpecs() []azure.ResourceSpecGetter {
   511  	m.ctrl.T.Helper()
   512  	ret := m.ctrl.Call(m, "VMSSExtensionSpecs")
   513  	ret0, _ := ret[0].([]azure.ResourceSpecGetter)
   514  	return ret0
   515  }
   516  
   517  // VMSSExtensionSpecs indicates an expected call of VMSSExtensionSpecs.
   518  func (mr *MockScaleSetScopeMockRecorder) VMSSExtensionSpecs() *gomock.Call {
   519  	mr.mock.ctrl.T.Helper()
   520  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "VMSSExtensionSpecs", reflect.TypeOf((*MockScaleSetScope)(nil).VMSSExtensionSpecs))
   521  }